TUP.AsmResolver.ASM.InstructionCollection.GetAsmCode C# (CSharp) 메소드

GetAsmCode() 공개 메소드

Returns the instruction list in string format.
public GetAsmCode ( ) : string
리턴 string
        public string GetAsmCode()
        {
            StringBuilder builder = new StringBuilder();
            foreach (x86Instruction instr in List)
                builder.AppendLine(instr.ToString());
            return builder.ToString();
        }