clone() public method

public clone ( IoState state ) : IoObject
state IoState
return IoObject
Esempio n. 1
0
 public static new IoList createObject(IoState state)
 {
     IoList m = new IoList();
     return m.clone(state) as IoList;
 }
Esempio n. 2
0
File: IoList.cs Progetto: ypyf/io
        public new static IoList createObject(IoState state)
        {
            IoList m = new IoList();

            return(m.clone(state) as IoList);
        }