io.IoList.createObject C# (CSharp) 메소드

createObject() 공개 정적인 메소드

public static createObject ( IoState state ) : IoList
state IoState
리턴 IoList
        public static new IoList createObject(IoState state)
        {
            IoList m = new IoList();
            return m.clone(state) as IoList;
        }

Usage Example

예제 #1
0
파일: IoMessage.cs 프로젝트: ypyf/io
        public static IoObject slotArguments(IoObject target, IoObject locals, IoObject message)
        {
            IoMessage self = target as IoMessage;
            IoList    list = IoList.createObject(target.state);

            foreach (IoObject o in self.args)
            {
                list.append(o);
            }
            return(list);
        }
All Usage Examples Of io.IoList::createObject