Blaze.Server.TdfString.TdfString C# (CSharp) Method

TdfString() public method

public TdfString ( string label, string value ) : System
label string
value string
return System
        public TdfString(string label, string value)
        {
            this.Label = label;
            this.Type = TdfBaseType.String;

            this.Value = value;
        }
    }
TdfString