public static string GetDescription <T>(this T x, Expression <Func <T, object> > expression, ReflectionOptions options = ReflectionOptions.Default)
 {
     return(x is null ? string.Empty : TypeReflections.GetDescription(expression, options));
 }
 public static string GetDescription(this MemberInfo member, ReflectionOptions options = ReflectionOptions.Default)
 {
     return(TypeReflections.GetDescription(member, options));
 }