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

TdfInteger() public method

public TdfInteger ( string label, ulong value ) : System
label string
value ulong
return System
        public TdfInteger(string label, ulong value)
        {
            this.Label = label;
            this.Type = TdfBaseType.Integer;

            this.Value = value;
        }
    }
TdfInteger