Creates a new Sofu.Value with a given content.

C# |
public Value( string value )

- value (String)
- New content given to this Value


Sofu.Sofu.Value val = new Sofu.Sofu.Value("Hello World"); Console.Out.WriteLine(val.ToString()); //Writes Hello World