1. Can anyone give me an example of how I can have a c# plugin check an array created in an LUA plugin?
     
  2. I would create a function in the LUA plugin that returns the array and then call the LUA plugin from your C# plugin.

    Code:
    var PluginName = plugins.Find("PluginName");
    var output = PluginName?.Call("FunctionName","OptionalParameter1", "OptionalParameter2");