Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RuntimeMethodBody.cs
Go to the documentation of this file.
2
3namespace System.Reflection;
4
5internal sealed class RuntimeMethodBody : MethodBody
6{
7 private byte[] _IL;
8
10
12
14
16
17 private int _maxStackSize;
18
19 private bool _initLocals;
20
22
24
25 public override int MaxStackSize => _maxStackSize;
26
27 public override bool InitLocals => _initLocals;
28
30
32 {
33 _IL = null;
35 _localVariables = null;
36 _methodBase = null;
37 }
38
39 public override byte[] GetILAsByteArray()
40 {
41 return _IL;
42 }
43}
override IList< ExceptionHandlingClause > ExceptionHandlingClauses
override IList< LocalVariableInfo > LocalVariables
ExceptionHandlingClause[] _exceptionHandlingClauses