HttpClient.ViewController.ReleaseDesignerOutlets C# (CSharp) 메소드

ReleaseDesignerOutlets() 개인적인 메소드

private ReleaseDesignerOutlets ( ) : void
리턴 void
		void ReleaseDesignerOutlets ()
		{
			if (TheButton != null) {
				TheButton.Dispose ();
				TheButton = null;
			}

			if (TheTable != null) {
				TheTable.Dispose ();
				TheTable = null;
			}

			if (TheLog != null) {
				TheLog.Dispose ();
				TheLog = null;
			}
		}
	}