共用方式為


編譯器錯誤 C3737

'delegate': 委派可能沒有明確的呼叫慣例

您無法指定delegate呼叫慣例

範例

下列範例會產生 C3737:

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

int main() {
}