I'm trying to convert a Lua Table to a C# Byte array. I was able to get a conversion to a Double array to work as follows:
> require 'CLRPackage'
> import "System"
> tbl = {11,22,33,44}
> dbl_arr = Double[4]
> dbl_arr:GetValue(0)
> dbl_arr:GetValue(1)
> for i=0,3 do Console.WriteLine(dbl_arr:GetValue(i)) end
0
0
0
0
> for i,v in ipairs(tbl) do dbl_arr:SetValue(v,i-1) end
> for i=0,3 do Console.WriteLine(dbl_arr:GetValue(i)) end
11
22
33
44
>
However if I change the dbl_arr to a Byte array (dbl_arr = Byte[4]), then I get the following error: (error object is not a string)
I've tried a bunch of different things with no luck. Any help would be appreciated.
Update:
I was able to get a bit more information from the error by doing this:
suc,err = pcall(function() byte_arr:SetValue(12,0) end)
Now suc is false and err returns the following message:
SetValue failed
System.ArgumentException: Cannot widen from source type to target type either
because the source type is a not a primitive type or the conversion cannot
be accomplished.
at System.Array.InternalSetValue(Void* target, Object value)
at System.Array.SetValue(Object value, Int32 index)
I've installed luaforwindows from here. It's version 5.1.4-45. I'm running Microsoft Windows XP Professional Version 2002 Service Pack 3
Update:
This is the example code and where the error occurs
> require 'CLRPackage'
> import "System"
> tbl = {11,22,33,44}
> dbl_arr = Byte[4]
> for i,v in ipairs(tbl) do dbl_arr:SetValue(v,i-1) end <-- Error occurs here
dbl_arrcome from? – Nicol Bolas Aug 23 '11 at 22:02dbl_arr = Double[4]– SwDevMan81 Aug 23 '11 at 22:19Double[4]comes from. Is it using some kind of metatable to create objects using []? – Nicol Bolas Aug 23 '11 at 22:26Doubles. The metatable method you describe is probably how it's done under the hood. – superuser Aug 24 '11 at 4:45Array.SetValuethrows anArgumentExceptionwhen "the currentArraydoes not have exactly one dimension". So, there might be a bug in LuaInterface. – superuser Aug 24 '11 at 22:03