Esempio n. 1
0
 // Text retrieval/modification
 public string GetText(bool byteView, string[] tables)
 {
     if (!error)
     {
         return(new string(parser.Decode(Text, byteView, tables)));
     }
     else
     {
         return(new string(Text));
     }
 }
Esempio n. 2
0
 // class functions
 public string GetText(bool byteView)
 {
     if (!error)
     {
         return(new string(parser.Decode(Text, byteView, null)));
     }
     else
     {
         return(new string(Text));
     }
 }