我正在接受密封课程。
[Serializable]
public sealed class OrderProcessor : IDisposable
{.....}
这是具有接口实现的单独类。
[ComVisible(true)]
public interface IDisposable
{
void Dispose();
}
我想在另一个类中创建对象。
OrderProcessor processor = new OrderProcessor();
在创建对象时会出错。
错误:
The type initializer for 'OrderProcessor' threw an exception.
内部例外:
Value cannot be null.\r\nParameter name: assemblyString
注意:我的项目中没有assemblystring。
我怎样才能实现这一点。