The clrpackage tag has no wiki summary.
4
votes
2answers
366 views
Convert table to Byte array
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}
...
1
vote
2answers
178 views
How do I setup Wireshark to run Lua's CLRPackage
I'm trying to setup Wireshark so that I can use the LuaInterface to use some of the classes in the .NET framework. I'm able to get it working running through the Lua command line, but when I try to ...