任何想法是什么意思? 电话看起来像:
Require.IsTrue(value == null || type.IsInstanceOfType(value),
"value",
"The specified value must be an instance of the specified type.");
UPD:
[ContractArgumentValidator]
public static void IsTrue(
Boolean condition, String paramName, String message)
{
if(!condition)
{
throw new ArgumentException(message, paramName);
}
Contract.EndContractBlock();
}
答案 0 :(得分:1)
不要使用||或者&&运算符在验证器的参数中。反编译不支持它。