proto() public method

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

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