PERWAPI.ConstantBinding.ConstantBinding C# (CSharp) Méthode

ConstantBinding() private méthode

Create a new constant binding.
private ConstantBinding ( string name, object value, Type type, uint token ) : System
name string The name of the constant.
value object The value of the constant.
type Type The data type of the constant.
token uint
Résultat System
        internal ConstantBinding(string name, object value, Type type, uint token)
        {
            _value = value;
            _name = name;
            _type = type;
            _token = token;
        }