Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Step

override long System.Data.AutoIncrementInt64.Step
getsetpackage

Definition at line 45 of file AutoIncrementInt64.cs.

46 {
47 get
48 {
49 return _step;
50 }
51 set
52 {
53 if (value == 0L)
54 {
55 throw ExceptionBuilder.AutoIncrementSeed();
56 }
57 if (_step != value)
58 {
59 if (_current != Seed)
60 {
62 }
63 _step = value;
64 }
65 }
66 }