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"); } }