We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 870ce3e commit e7e5bb8Copy full SHA for e7e5bb8
Mono.Cecil.Cil/CodeReader.cs
@@ -92,7 +92,7 @@ void ReadMethodBody ()
92
switch (flags & 0x3) {
93
case 0x2: // tiny
94
body.code_size = flags >> 2;
95
- body.MaxStackSize = 8;
+ body.max_stack_size = 8;
96
ReadCode ();
97
break;
98
case 0x3: // fat
Mono.Cecil.Cil/MethodBody.cs
@@ -35,7 +35,6 @@ public MethodDefinition Method {
35
36
public int MaxStackSize {
37
get { return max_stack_size; }
38
- set { max_stack_size = value; }
39
}
40
41
public int CodeSize {
0 commit comments