use List ,Array,Dictionary - sonygod/luaxe-nlua GitHub Wiki
current on base implement simple way ,no intelligent tip .will add
var list = untyped(current.list);
untyped (list.Add(2));
untyped oo = untyped(list.GetEnumerator());
while (untyped(oo.MoveNext())) {
trace(untyped(oo.Current));
}