bigloo.foreign.VECTOR_SET C# (CSharp) Method

VECTOR_SET() public static method

public static VECTOR_SET ( Object v, int i, Object o ) : Object
v Object
i int
o Object
return Object
        public static Object VECTOR_SET( Object[] v, int i, Object o )
        {
            v[i]= o;
            return unspecified._unspecified;
        }
foreign