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