public Pair(PropertyInfo propertyInfo, int resourceId)
 {
     _resourceId = resourceId;
     _methodInfo = ResolveMethod.MakeGenericMethod(propertyInfo.PropertyType);
     _setValue   = propertyInfo.SetValue;
 }
 public Pair(FieldInfo fieldInfo, int resourceId)
 {
     _resourceId = resourceId;
     _methodInfo = ResolveMethod.MakeGenericMethod(fieldInfo.FieldType);
     _setValue   = fieldInfo.SetValue;
 }