Used to identify this as a Map
Declaration Syntax
C# |
public override string TypeString()
Return Value
Returns the string "Map"
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()); }