Creates a new Sofu.Value with a given content.
Declaration Syntax
C# |
public Value( string value )
Parameters
- value (String)
- New content given to this Value
Examples
CopyC#
Sofu.Sofu.Value val = new Sofu.Sofu.Value("Hello World"); Console.Out.WriteLine(val.ToString()); //Writes Hello World