コード例 #1
0
ファイル: Validators.cs プロジェクト: lhorcajada/PDF
 public static void ThrowExceptionWhenIsEquals(Expression <Func <object> > paramExpression, object expectedValue)
 {
     Validators.ThrowExceptionWhenIsNull("paramExpression", (object)paramExpression);
     Validators.ThrowExceptionWhenIsEquals(Validators.GetParamName(paramExpression), Validators.GetParamValue(paramExpression), expectedValue);
 }