|
| static new Ldc_I4 | Read (XElement element) |
| | Reads the XML element into a new Ldc_I4 instance.
|
| |
| static void | Load (Ldc_I4 inst, XElement element) |
| | Loads the XML element into the instruction.
|
| |
| static Instruction | Read (XElement element) |
| | Reads the XML element into a new InstructionList instance.
|
| |
|
| int | Value [get, set] |
| |
| int | LineNumber [get, set] |
| | Gets the line number in the source file where this element occurs.
|
| |
| int | LinePosition [get, set] |
| | Gets the line position in the source file where this element occurs.
|
| |
|
| static void | Load (MapXmlElement e, XElement element) |
| | Loads the XML element into the instance.
|
| |
Definition at line 33 of file Ldc_I4.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.Ldc_I4.Load |
( |
Ldc_I4 | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 53 of file Ldc_I4.cs.
54 {
56 inst.Value = (int)element.Attribute("value");
57 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static new Ldc_I4 IKVM.Tools.Importer.MapXml.Ldc_I4.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new Ldc_I4 instance.
- Parameters
-
- Returns
Definition at line 41 of file Ldc_I4.cs.
42 {
43 var inst = new Ldc_I4();
45 return inst;
46 }
◆ Value
| int IKVM.Tools.Importer.MapXml.Ldc_I4.Value |
|
getset |
The documentation for this class was generated from the following file: