Wren.Core.Objects.ObjList.Insert C# (CSharp) 메소드

Insert() 공개 메소드

public Insert ( Wren.Core.Objects.Obj c, int index ) : void
c Wren.Core.Objects.Obj
index int
리턴 void
        public void Insert(Obj c, int index)
        {
            _elements.Insert(index, c);
        }