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

◆ InternalCopy()

static unsafe void System.String.InternalCopy ( string src,
IntPtr dest,
int len )
inlinestaticpackage

Definition at line 93 of file String.cs.

94 {
95 if (len != 0)
96 {
97 Buffer.Memmove(ref *(byte*)(void*)dest, ref Unsafe.As<char, byte>(ref src.GetRawStringData()), (nuint)len);
98 }
99 }

References System.len, and System.Buffer.Memmove().