編譯器警告 (層級 1) CS0684
'interface' 介面標記為 'CoClassAttribute',但沒有標記為 'ComImportAttribute'
如果您在介面指定 CoClassAttribute ,則也必須指定 ComImportAttribute。
下列範例會產生 CS0684:
C#
// CS0684.cs
// compile with: /W:1
using System;
using System.Runtime.InteropServices;
[CoClass(typeof(C))] // CS0684
// try the following line instead
// [CoClass(typeof(C)), ComImport]
interface I
{
}
class C
{
static void Main() {}
}