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();
何か見逃しているものはありますか?