Severity Code Description Project File Line Suppression State
Error CS1674 ‘MutipleThreadResetEvent’: type used in a using statement must be implicitly convertible to ‘System.IDisposable’.
第一种解决方法:工具 -.NuGet下载EntityFramework是否能够解决,不能够解决就看第二种方式:
第二种方法:
// CS1674_b.cs
using System;
class C {
public void Test() {
using (C c = new C()) {} // CS1674
}
}
// OK
class D : IDisposable {
void IDisposable.Dispose() {}
public void Dispose() {}
public static void Main() {
using (D d = new D()) {}
}
}
微软件编译错误链接CS1674
本文是第二方法解决!