bigloo.foreign.STRUCT_SET C# (CSharp) Method

STRUCT_SET() public static method

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