IO.Path.GetTempFileName() in a c# application it's supposed to create a temp file and return the full path and filename, but the problem that i'm facing is that it ruturns the path with a double slash, just like this:
C:\\Users\\user\\AppData\\Local\\Temp\\tmp4230.tmp
Is it correct? or should it return something like this:
C:\Users\user\AppData\Local\Temp\tmp4230.tmp
thanks in advance