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

◆ CloneByteArray() [6/6]

static byte[] Internal.Cryptography.Helpers.CloneByteArray ( this byte[] src)
inlinestatic

Definition at line 28 of file Helpers.cs.

29 {
30 if (src == null)
31 {
32 return null;
33 }
34 return (byte[])src.Clone();
35 }