GetEnumerator
GetEnumerator
LuaTable:GetEnumerator()
Ritorna un IDictionaryEnumerator per consultare il contenuto della table.
// test the enumerator
IDictionaryEnumerator myEnum = tbl.GetEnumerator();
while (myEnum.MoveNext())
{
Console.WriteLine(myEnum.Key + " - " + myEnum.Value);
}
Created with the Personal Edition of HelpNDoc: Maximize Your Documentation Efficiency with a Help Authoring Tool