Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Helpers.cs
Go to the documentation of this file.
2
4
5internal static class Helpers
6{
7 [return: NotNullIfNotNull("src")]
8 public static byte[] CloneByteArray(this byte[] src)
9 {
10 if (src == null)
11 {
12 return null;
13 }
14 return (byte[])src.Clone();
15 }
16}
static byte[] CloneByteArray(this byte[] src)
Definition Helpers.cs:8