Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Step
override long System.Data.AutoIncrementInt64.Step
get
set
package
Definition at line
45
of file
AutoIncrementInt64.cs
.
46
{
47
get
48
{
49
return
_step
;
50
}
51
set
52
{
53
if
(
value
== 0
L
)
54
{
55
throw
ExceptionBuilder.AutoIncrementSeed();
56
}
57
if
(
_step
!=
value
)
58
{
59
if
(
_current
!=
Seed
)
60
{
61
_current
=
_current
-
_step
+
value
;
62
}
63
_step
=
value
;
64
}
65
}
66
}
System.Data.AutoIncrementInt64._step
long _step
Definition
AutoIncrementInt64.cs:13
System.Data.AutoIncrementInt64.Seed
override long Seed
Definition
AutoIncrementInt64.cs:30
System.Data.AutoIncrementInt64._current
long _current
Definition
AutoIncrementInt64.cs:9
System.ExceptionArgument.value
@ value
System.ConsoleKey.L
@ L
System
Data
AutoIncrementInt64
Generated by
1.10.0