Mono.Cecil.FieldDefinition.FieldDefinition C# (CSharp) Méthode

FieldDefinition() public méthode

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