Mono.Cecil.Cil.ConstantDebugInformation.ConstantDebugInformation C# (CSharp) 메소드

ConstantDebugInformation() 공개 메소드

public ConstantDebugInformation ( string name, TypeReference constant_type, object value ) : System
name string
constant_type TypeReference
value object
리턴 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