wasSharpNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 26  →  ?path2? @ 27
/IO/SafeFileStream.cs
@@ -20,7 +20,7 @@
 
public SafeFileStream(string path, FileMode mode, FileAccess access, FileShare share, uint milliscondsTimeout)
{
m_mutex = new Mutex(false, string.Format("Global\\{0}", path.Replace('\\', '/')));
m_mutex = new Mutex(false, $"Global\\{path.Replace('\\', '/')}");
m_path = path;
m_fileMode = mode;
m_fileAccess = access;