編譯器錯誤 CS0669
擁有 ComImport 屬性的類別無法有使用者定義的建構函式。
Common Language Runtime 中的 COM Interop 層提供 ComImport 類別的建構函式。 因此,COM 物件可用來作為執行階段中的 Managed 物件。
下列範例會產生 CS0669:
C#
// 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()
{
}
}