我在 C++ CLI 中的代码:
[System::Runtime::CompilerServices::ExtensionAttribute]
public ref class MyExtensions abstract sealed {
public:
[System::Runtime::CompilerServices::ExtensionAttribute]
static System::String^ SetC() {
return gcnew System::String("{") + gcnew System::String("}") ;
}
}
但是下面的行会抛出一个错误,即 String 没有成员 SetC。
System::String("").SetC();
我也尝试过使用以下代码:
gcnew System::String("")->SetC();
有什么遗漏吗?