/// <summary>
 /// Gets the value of the instance field identified by <paramref name="fieldInfo"/> of the given <paramref name="obj"/>.
 /// </summary>
 public static object Get(this FieldInfo fieldInfo, object obj)
 {
     return(fieldInfo.DelegateForGetFieldValue()(obj));
 }