System.Threading.Monitor.Monitor.TryEnter C# (CSharp) Method

TryEnter() public static method

public static TryEnter ( object obj ) : bool
obj object
return bool
		public static bool TryEnter (object obj)
		{
			return TryEnter (obj, 0);
		}

Same methods

Monitor.Monitor::TryEnter ( object obj, TimeSpan timeout ) : bool
Monitor.Monitor::TryEnter ( object obj, int millisecondsTimeout ) : bool