我正在试验 .NET 代码合同。以下代码在运行时契约检查关闭时运行良好,但在运行时契约检查打开时失败:
using System.Collections.Generic;
using System.Diagnostics.Contracts;
namespace ConsoleApplication1
{
public class Item<T> where T : class { }
public class FooItem : Item<FooItem> { }
[ContractClass(typeof(ITaskContract<>))]
public interface ITask<T> where T : Item<T>
{
void Execute(IEnumerable<T> items);
}
[ContractClassFor(typeof(ITask<>))]
internal abstract class ITaskContract<T> : ITask<T> where T : Item<T>
{
void ITask<T>.Execute(IEnumerable<T> items)
{
Contract.Requires(items != null);
Contract.Requires(Contract.ForAll(items, x => x != null));
}
}
public class FooTask : ITask<FooItem>
{
public void Execute(IEnumerable<FooItem> items) { }
}
class Program
{
static void Main(string[] args)
{
new FooTask();
}
}
}
运行此代码时出现的错误不是违反合同。相反,重写器似乎正在以某种方式生成损坏的二进制文件:
未处理的异常:System.BadImageFormatException:尝试加载格式不正确的程序。(来自 HRESULT 的异常:0x8007000B)在 ConsoleApplication1.Program.Main(String[] args)
如果我删除以下行,错误就会消失:
Contract.Requires(Contract.ForAll(items, x => x != null));
我做错了什么,或者这是二进制重写器中的错误?我能做些什么呢?