clone() public method

public clone ( IoState state ) : IoObject
state IoState
return IoObject
Example #1
0
        public new static IoCoroutine createObject(IoState state)
        {
            IoCoroutine s = new IoCoroutine();

            return(s.clone(state) as IoCoroutine);
        }
Example #2
0
 public static new IoCoroutine createObject(IoState state)
 {
     IoCoroutine s = new IoCoroutine();
     return s.clone(state) as IoCoroutine;
 }