Sofu Documentation
TypeString Method
NamespacesSofu.SofuSofuObjectTypeString()()()
Returns the type of this SofuObject. Overwritten by all its inheriting classes.
Declaration Syntax
C#
public virtual string TypeString()
Return Value
The type of this instance a string.
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)