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()); }