Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SignatureByRefType.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
4{
5 public sealed override bool IsSZArray => false;
6
7 public sealed override bool IsVariableBoundArray => false;
8
9 protected sealed override string Suffix => "&";
10
15
16 protected sealed override bool IsArrayImpl()
17 {
18 return false;
19 }
20
21 protected sealed override bool IsByRefImpl()
22 {
23 return true;
24 }
25
26 protected sealed override bool IsPointerImpl()
27 {
28 return false;
29 }
30
31 public sealed override int GetArrayRank()
32 {
34 }
35}
SignatureByRefType(SignatureType elementType)
static string Argument_HasToBeArrayClass
Definition SR.cs:614
Definition SR.cs:7