Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void
        void supplierid_txt_Leave(object sender, EventArgs e)
        {
            Operations_SupplierSearch OpsSupSearch = new Operations_SupplierSearch(supplierid_txt.Text);

            supplierid_txt.Text = OpsSupSearch.ReturnID;

            supplieradd_txt.Text = OpsSupSearch.ReturnDdsBillAddr;

            UpdateLine(OPDataGrid, oomtemplatename_txt.Text, "Opr");

            OpsSupSearch.Dispose();
        }