コード例 #1
0
 /// <summary>
 /// Get the value of a nested property with the given URI from an object.
 /// </summary>
 /// <param name="obj"></param>
 /// <param name="name"></param>
 /// <returns></returns>
 public static object GetNestedPropertyValue(object obj, string name)
 {
     return(GetNestedPropertyValue(obj, UriUtilities.GetParts(name)));
 }