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

◆ WriteUTF8() [2/2]

void System.Reflection.Metadata.BlobWriter.WriteUTF8 ( string value,
bool allowUnpairedSurrogates )
inline

Definition at line 391 of file BlobWriter.cs.

392 {
393 if (value == null)
394 {
395 Throw.ArgumentNull("value");
396 }
397 WriteUTF8(value, 0, value.Length, allowUnpairedSurrogates, prependSize: false);
398 }
void WriteUTF8(string value, bool allowUnpairedSurrogates)

References System.Reflection.Throw.ArgumentNull(), System.value, and System.Reflection.Metadata.BlobWriter.WriteUTF8().

Referenced by System.Reflection.Metadata.BlobWriter.WriteSerializedString(), and System.Reflection.Metadata.BlobWriter.WriteUTF8().