Tests: Update Properties tests to include indexers
This commit is contained in:
@@ -10,7 +10,12 @@ internal class Test // TypeDefIndex: 1811
|
||||
private int prop1 { get; set; } // 0x100BF0C0 0x100EB270
|
||||
protected int prop2 { get; private set; } // 0x100C5B30 0x100C5B50
|
||||
protected int prop3 { private get; set; } // 0x100BFC20 0x100C5B40
|
||||
public static int prop4 { private get; set; } // 0x1034DA60 0x1034DA90
|
||||
public static int prop4 { private get; set; } // 0x1034DAF0 0x1034DB20
|
||||
public string this[int i] { get; } // 0x1034DA90
|
||||
public string this[double d] { get; } // 0x1034DA60
|
||||
public string this[long l] { set; } // 0x100C5530
|
||||
public string this[] { get; set; } // 0x1034DAC0 0x100C5530
|
||||
public bool this[int i, int j] { get; } // 0x100E5880
|
||||
|
||||
// Constructors
|
||||
public Test(); // 0x100BF000
|
||||
|
||||
Reference in New Issue
Block a user