Beispiel #1
0
 public static IoString createObject(IoState state, string symbol)
 {
     IoString str = new IoString();
     str = str.clone(state) as IoString;
     str.value = symbol;
     return str;
 }
Beispiel #2
0
 public static new IoString createObject(IoState state)
 {
     IoString s = new IoString();
     return s.clone(state) as IoString;
 }