Global Variable
namespace MyNameSpace
{
using namespace System::Runtime::InteropServices;
[DllImport("c:\\program files\\notes\\nnotes.dll")]
extern "C" int NotesInitExtended(int str1, char * str2[]);
...
}
I'm trying to put the value "c:\\program files\\notes\\nnotes.dll" into some static variable. I tried String but it gives "cannot declare a global or static managed type object or a __gc pointer"

