proto() public method

public proto ( IoState state ) : IoObject
state IoState
return IoObject
コード例 #1
0
        public new static IoCLRAssembly createObject(IoState state)
        {
            IoCLRAssembly cf = new IoCLRAssembly();

            return(cf.proto(state).clone(state) as IoCLRAssembly);
        }
コード例 #2
0
ファイル: IoCLRAssembly.cs プロジェクト: stangelandcl/io-clr
 public static new IoCLRAssembly createProto(IoState state)
 {
     IoCLRAssembly cf = new IoCLRAssembly();
     return cf.proto(state) as IoCLRAssembly;
 }
コード例 #3
0
        public new static IoCLRAssembly createProto(IoState state)
        {
            IoCLRAssembly cf = new IoCLRAssembly();

            return(cf.proto(state) as IoCLRAssembly);
        }
コード例 #4
0
ファイル: IoCLRAssembly.cs プロジェクト: stangelandcl/io-clr
 public static new IoCLRAssembly createObject(IoState state)
 {
     IoCLRAssembly cf = new IoCLRAssembly();
     return cf.proto(state).clone(state) as IoCLRAssembly;
 }