Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
PreallocationSize
long System.IO.FileStreamOptions.PreallocationSize
get
set
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
}
94
_preallocationSize
=
value
;
95
}
96
}
System.IO.FileStreamOptions._preallocationSize
long _preallocationSize
Definition
FileStreamOptions.cs:13
System.ExceptionArgument.value
@ value
System
IO
FileStreamOptions
Generated by
1.10.0