Sofu Documentation
TypeString Method
NamespacesSofu.SofuListTypeString()()()
Used to identify this as a List
Declaration Syntax
C#
public override string TypeString()
Return Value
Returns the string "List"
Examples
CopyC#
Sofu.Sofu.Map file = SofuReader.LoadFile("file.sofu");
foreach (KeyValuePair<string,Sofu.SofuObject> entry in file) {
    Console.Out.Write("Attribute \"");
    Console.Out.Write(entry.Key);
    Console.Out.Write("\" is a ");
    Console.Out.WriteLine(entry.Value.TypeString());
}

Assembly: Sofu (Module: Sofu) Version: 0.2.1.0 (0.2.1.0)