Mono.Cecil.Cil.ConstantDebugInformation.ConstantDebugInformation C# (CSharp) Method

ConstantDebugInformation() public method

public ConstantDebugInformation ( string name, TypeReference constant_type, object value ) : System
name string
constant_type TypeReference
value object
return System
        public ConstantDebugInformation(string name, TypeReference constant_type, object value)
        {
            if (name == null)
                throw new ArgumentNullException ("name");

            this.name = name;
            this.constant_type = constant_type;
            this.value = value;
            this.token = new MetadataToken (TokenType.LocalConstant);
        }
ConstantDebugInformation