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

◆ PrelinkAll()

static void System.Runtime.InteropServices.Marshal.PrelinkAll ( Type c)
inlinestatic

Definition at line 1146 of file Marshal.cs.

1147 {
1148 if ((object)c == null)
1149 {
1150 throw new ArgumentNullException("c");
1151 }
1152 MethodInfo[] methods = c.GetMethods();
1153 for (int i = 0; i < methods.Length; i++)
1154 {
1155 Prelink(methods[i]);
1156 }
1157 }
static void Prelink(MethodInfo m)
Definition Marshal.cs:1136

References System.Type.GetMethods(), and System.Runtime.InteropServices.Marshal.Prelink().