Obfuscar.PropertyKey.PropertyKey C# (CSharp) 메소드

PropertyKey() 공개 메소드

public PropertyKey ( TypeKey typeKey, Mono.Cecil.PropertyDefinition prop ) : System
typeKey TypeKey
prop Mono.Cecil.PropertyDefinition
리턴 System
        public PropertyKey(TypeKey typeKey, PropertyDefinition prop)
        {
            this.typeKey = typeKey;
            this.type = prop.PropertyType.FullName;
            this.name = prop.Name;
            this.propertyDefinition = prop;
        }