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

◆ TryParseThrowFormatException< T >() [2/2]

static bool System.Buffers.Text.ParserHelpers.TryParseThrowFormatException< T > ( ReadOnlySpan< byte > source,
out T value,
out int bytesConsumed )
inlinestatic
Type Constraints
T :struct 

Definition at line 31 of file ParserHelpers.cs.

31 : struct
32 {
33 Unsafe.SkipInit<T>(out value);
34 Unsafe.SkipInit<int>(out bytesConsumed);
35 ThrowHelper.ThrowFormatException_BadFormatSpecifier();
36 return false;
37 }

References System.ThrowHelper.ThrowFormatException_BadFormatSpecifier(), and System.value.