次の方法で共有


コンパイラ エラー C3737

'delegate': デリゲートが明示的な呼び出し規約を持っていない可能性があります。

delegate呼び出し規則を指定することはできません。

次の例では C3737 が生成されます。

// C3737a.cpp
// compile with: /clr
delegate void __stdcall MyFunc();   // C3737
// Try the following line instead.
// delegate void MyFunc();

int main() {
}