Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
TryWrite()
[1/2]
static
bool
System.MemoryExtensions.TryWrite
(
this
Span
< char >
destination
,
[InterpolatedStringHandlerArgument("destination")]
ref
TryWriteInterpolatedStringHandler
handler
,
out
int
charsWritten
)
inline
static
Definition at line
1336
of file
MemoryExtensions.cs
.
1337
{
1338
if
(handler._success)
1339
{
1340
charsWritten
= handler._pos;
1341
return
true
;
1342
}
1343
charsWritten
= 0;
1344
return
false
;
1345
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
MemoryExtensions
Generated by
1.10.0