GetOperandString() 공개 메소드

public GetOperandString ( ) : string
리턴 string
예제 #1
0
 private ListViewItem CreateItem(MSILInstruction instruction)
 {
     return new ListViewItem(new string[] { "IL_" + instruction.Offset.ToString("X4"), instruction.OpCode.Name, instruction.GetOperandString() }) { Tag = instruction };
 }