System.Threading.CSnziLeafNode.Depart C# (CSharp) Method

Depart() public method

public Depart ( ) : bool
return bool
		public bool Depart ()
		{
			int x = Interlocked.Decrement (ref count);
			if (x == 1)
				return parent.Depart ();
			else
				return true;
		}
		#endregion