proto() public method

public proto ( IoState state ) : IoObject
state IoState
return IoObject
示例#1
0
 // Prototypes and Clone
 public static new IoBlock createProto(IoState state)
 {
     IoBlock number = new IoBlock();
     return number.proto(state) as IoBlock;
 }
示例#2
0
        // Prototypes and Clone

        public new static IoBlock createProto(IoState state)
        {
            IoBlock number = new IoBlock();

            return(number.proto(state) as IoBlock);
        }