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

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