namespace TLang.VM { public class TString : TObject { public string Value {get;set;} public TString(string value) { this.Value = value; } } }