Obfuscar.PropertyKey.PropertyKey C# (CSharp) Method

PropertyKey() public method

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