共用方式為


編譯器錯誤 C3131

專案必須擁有具有 'name' 屬性的 'module' 屬性

模組屬性必須具有 name 參數。

下列範例會產生 C3131:

// C3131.cpp
[emitidl];
[module];   // C3131
// try the following line instead
// [module (name="MyLib")];

[public]
typedef long int LongInt;