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

◆ WriteBytes() [2/8]

unsafe void System.Reflection.Metadata.BlobWriter.WriteBytes ( byte * buffer,
int byteCount )
inline

Definition at line 126 of file BlobWriter.cs.

127 {
128 if (buffer == null)
129 {
130 Throw.ArgumentNull("buffer");
131 }
132 if (byteCount < 0)
133 {
134 Throw.ArgumentOutOfRange("byteCount");
135 }
137 }
unsafe void WriteBytesUnchecked(byte *buffer, int byteCount)

References System.Reflection.Throw.ArgumentNull(), System.Reflection.Throw.ArgumentOutOfRange(), System.buffer, System.byteCount, and System.Reflection.Metadata.BlobWriter.WriteBytesUnchecked().