Blaze.Server.TdfString.TdfString C# (CSharp) 메소드

TdfString() 공개 메소드

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

            this.Value = value;
        }
    }
TdfString