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

◆ MakeArrayType() [2/2]

override Type System.RuntimeType.MakeArrayType ( int rank)
inlinevirtual

Reimplemented from System.Type.

Definition at line 2982 of file RuntimeType.cs.

2983 {
2984 if (rank <= 0)
2985 {
2986 throw new IndexOutOfRangeException();
2987 }
2988 return new RuntimeTypeHandle(this).MakeArray(rank);
2989 }

References System.RuntimeTypeHandle.MakeArray().