Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
GetAndTrimString()
[11/11]
static
string
Interop.Kernel32.GetAndTrimString
(
Span
< char >
buffer
)
inline
static
private
Definition at line
422
of file
Interop.cs
.
423
{
424
int
num =
buffer
.Length;
425
while
(num > 0 &&
buffer
[num - 1] <=
' '
)
426
{
427
num--;
428
}
429
return
buffer
.Slice(0, num).ToString();
430
}
System.ExceptionArgument.buffer
@ buffer
References
System.buffer
.
Interop
Kernel32
Generated by
1.10.0