Esempio n. 1
0
 public static IndirectProperty <TType> Create(object element, string propertyPath)
 {
     try
     {
         var path = ReflectionPathResolver.GetProperty(element, propertyPath);
         return(new IndirectProperty <TType>(path.Item1, path.Item2));
     }
     catch (Exception)
     {
         return(null);
     }
 }