Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MethodBody.cs
Go to the documentation of this file.
2
3namespace System.Reflection;
4
5public class MethodBody
6{
7 public virtual int LocalSignatureMetadataToken => 0;
8
10 {
11 get
12 {
13 throw new ArgumentNullException("array");
14 }
15 }
16
17 public virtual int MaxStackSize => 0;
18
19 public virtual bool InitLocals => false;
20
22 {
23 get
24 {
25 throw new ArgumentNullException("array");
26 }
27 }
28
29 protected MethodBody()
30 {
31 }
32
33 public virtual byte[]? GetILAsByteArray()
34 {
35 return null;
36 }
37}
virtual IList< LocalVariableInfo > LocalVariables
Definition MethodBody.cs:10
virtual IList< ExceptionHandlingClause > ExceptionHandlingClauses
Definition MethodBody.cs:22
virtual int LocalSignatureMetadataToken
Definition MethodBody.cs:7
virtual ? byte[] GetILAsByteArray()
Definition MethodBody.cs:33