SIL.Utils.GlobalMutex.GlobalMutex C# (CSharp) Méthode

GlobalMutex() public méthode

Initializes a new instance of the GlobalMutex class.
public GlobalMutex ( string name ) : System
name string
Résultat System
		public GlobalMutex(string name)
		{
			m_name = name;
#if __MonoCS__
			m_adapter = new LinuxGlobalMutexAdapter(name);
#else
			m_adapter = new WindowsGlobalMutexAdapter(name);
#endif
		}