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