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.