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