System.Threading.Monitor.Monitor.TryEnter C# (CSharp) 메소드

TryEnter() 공개 정적인 메소드

public static TryEnter ( object obj ) : bool
obj object
리턴 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