Sofu Documentation
IsReference Method
NamespacesSofu.SofuSofuObjectIsReference()()()
Tests if this SofuObject is a Sofu.Reference
Declaration Syntax
C#
public virtual bool IsReference()
Return Value
True if it is a Reference, false otherwise
Examples
CopyC#
Sofu.Sofu.Map file = SofuReader.LoadFile("file.sofu");
foreach (KeyValuePair<string,Sofu.SofuObject> entry in file) {
    if (entry.Value.IsReference()) {
        Console.Out.Write(entry.Key);
        Console.Out.WriteLine(" is a reference");
    }
}

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