編譯器錯誤 CS0669
更新:2007 年 11 月
錯誤訊息
擁有 ComImport 屬性的類別無法有使用者定義的建構函式
Common Language Runtime 中的 COM Interop 層提供 ComImport 類別的建構函式。因此,COM 物件可在執行階段時當成 Managed 物件使用。
下列範例會產生 CS0669:
// CS0669.cs
using System.Runtime.InteropServices;
[ComImport, Guid("00000000-0000-0000-0000-000000000001")]
class TestClass
{
TestClass() // CS0669, delete constructor to resolve
{
}
public static void Main()
{
}
}