Sofu Documentation
Value Constructor (obj)
NamespacesSofu.SofuValueValue(Object)
Creates a new Sofu.Value with a given content.
Declaration Syntax
C#
public Value(
	Object obj
)
Parameters
obj (Object)
New content given to this Value
Examples
CopyC#
DateTime n = DateTime.Now;
Sofu.Sofu.Value val = new Sofu.Sofu.Value(n);
Console.Out.WriteLine(val.ToString()); //Writes what n.ToString() would have written.

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