Monobjc.Foundation.NSNotificationTests.Notify C# (CSharp) Method

Notify() private method

private Notify ( ) : void
return void
		private void Notify()
		{
			using(NSAutoreleasePool pool = new NSAutoreleasePool())
			{
				GC.WaitForPendingFinalizers();
				GC.Collect();
				GC.WaitForPendingFinalizers();
				NSNotificationCenter.DefaultCenter.PostNotificationNameObject(MyListener.SELECTOR_NOTIFICATION, null);
				mre.Set();
			}
		}
	}