compiling problem in managed c++ code
My code is
String* path = Path::GetTempFileName();
When I compiled my file, the compiler complaints:
error C2039: '\GetTeampPathA': is not a memeber of 'System::IO::Path'
error C2660: 'GetTempPathA': function does not take 0 parameters
MSDN provides no sample code as how to use Path in C++. I am wondering if this is intentionally? Does anybody have any experience with System::IO::Path class?
Leigh

