Sofu Documentation
IsValue Method
NamespacesSofu.SofuValueIsValue()()()
Tests if this Value is a Value
Declaration Syntax
C#
public override bool IsValue()
Return Value
Returns true
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)