Read .lua files in .net ( LuaInterface )

392 views Asked by At

i have a Question :

How can i parse / read .lua files with .net.

Sample.lua :

TestValues = {
        ["test1"] = {
        [1] = "value1",
        [2] = "value2",
        [3] = "value3",
        }
    }

How i can get the data : value1, value2, value3?

I cant seem to find any documentation on the internet

0

There are 0 answers