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

◆ PreallocationSize

long System.IO.FileStreamOptions.PreallocationSize
getset

Definition at line 82 of file FileStreamOptions.cs.

83 {
84 get
85 {
86 return _preallocationSize;
87 }
88 set
89 {
90 if (value < 0)
91 {
92 throw new ArgumentOutOfRangeException("value", SR.ArgumentOutOfRange_NeedNonNegNum);
93 }
95 }
96 }