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