GetStrings() public method

public GetStrings ( ) : string
return string
Ejemplo n.º 1
0
        public virtual string Disassemble()
        {
            BytecodeDisassembler dis = new BytecodeDisassembler(this);

            using (StringWriter sw = new StringWriter())
            {
                sw.WriteLine(dis.Disassemble());
                sw.WriteLine("Strings:");
                sw.WriteLine(dis.GetStrings());
                sw.WriteLine("Bytecode to template map:");
                sw.WriteLine(dis.GetSourceMap());
                return(sw.ToString());
            }
        }
Ejemplo n.º 2
0
 public virtual string Disassemble()
 {
     BytecodeDisassembler dis = new BytecodeDisassembler(this);
     using (StringWriter sw = new StringWriter())
     {
         sw.WriteLine(dis.Disassemble());
         sw.WriteLine("Strings:");
         sw.WriteLine(dis.GetStrings());
         sw.WriteLine("Bytecode to template map:");
         sw.WriteLine(dis.GetSourceMap());
         return sw.ToString();
     }
 }