Exemplo n.º 1
0
        public JSValue(JSValue[] value)
        {
            IntPtr jsarray = JSArrayHelper.createArray(value);

            instance = awe_jsvalue_create_array_value(jsarray);

            JSArrayHelper.destroyArray(jsarray);
        }
Exemplo n.º 2
0
        public string[] GetKeys()
        {
            IntPtr jsArray = awe_jsobject_get_keys(instance);

            uint size = JSArrayHelper.getSize(jsArray);

            string[] result = new string[size];
            for (uint i = 0; i < size; i++)
            {
                JSValue temp = JSArrayHelper.getElement(jsArray, i);
                result[i] = temp.ToString();
            }

            JSArrayHelper.destroyArray(jsArray);

            return(result);
        }