MonoMobile.Views.UIInputViewToolbar.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void
		protected override void Dispose(bool disposing)
		{
			if (disposing)
			{
				if (_Spacer != null)
				{
					_Spacer.Dispose();
					_Spacer = null;
				}

				if (_DoneButton != null)
				{
					_DoneButton.Dispose();
					_DoneButton = null;
				}
			}
			
			base.Dispose(disposing);
		}