Mono.Cecil.FieldDefinition.FieldDefinition C# (CSharp) 메소드

FieldDefinition() 공개 메소드

public FieldDefinition ( string name, FieldAttributes attributes, TypeReference fieldType ) : System
name string
attributes FieldAttributes
fieldType TypeReference
리턴 System
        public FieldDefinition(string name, FieldAttributes attributes, TypeReference fieldType)
            : base(name, fieldType)
        {
            this.attributes = (ushort) attributes;
        }