Sofu Documentation
TypeString Method
NamespacesSofu.SofuReferenceTypeString()()()
Used to identify this as a Reference
Declaration Syntax
C#
public override string TypeString()
Return Value
Returns the string "Reference"
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)