2

それはどういう意味ですか?呼び出しは次のようになります。

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();
}
4

1 に答える 1

1

||を使用しないでください またはバリデーターの引数の&&演算子。逆コンパイルはそれをサポートしていません。

于 2013-04-24T21:21:43.413 に答える