Пример #1
0
 public static string AnnotatedToCode <T>(this IAnnotatedToCode it, Expression <Func <T> > e, string?msg, bool outerValueIsAssertionFailure)
 // ReSharper disable once RedundantCast
 => it.AnnotatedToCode((Expression)e, msg, outerValueIsAssertionFailure);
Пример #2
0
 public static string AnnotatedToCode(this IAnnotatedToCode it, Expression e)
 => it.AnnotatedToCode(e, null, false);
Пример #3
0
 public static string AnnotatedToCode <T>(this IAnnotatedToCode it, Expression <Func <T> > e)
 => it.AnnotatedToCode(e, null, false);
Пример #4
0
 public static string AnnotatedToCode <T>(this IAnnotatedToCode it, Expression <Func <T> > e, string msg, bool hideOutermostValue)
 => it.AnnotatedToCode((Expression)e, msg, hideOutermostValue);