Example #1
0
 public static object GetValue(this PropertyReference propertyReference)
 {
     return(propertyReference.getter.GetValue());
 }
Example #2
0
 public static bool IsValid(this PropertyReference propertyReference)
 {
     return(propertyReference.target != null && !string.IsNullOrEmpty(propertyReference.fieldName));
 }
Example #3
0
 private static string GetPropertyKey(this PropertyReference propertyReference)
 {
     return($"{propertyReference.target.GetType().FullName}.{propertyReference.fieldName}");
 }