S
SomaSundaram R
Guest
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
Here, When i step into the below line (basically F11)
components.Dispose();
I could see the value of "testComboBoxCtrl" got changed with immediate effect - which i want to debug and understand. Please recommend the ways if there are any.
Infragistics.Win.UltraWinEditors.UltraComboEditor testComboBoxCtrl;
SomaSundaram R
Continue reading...
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
Here, When i step into the below line (basically F11)
components.Dispose();
I could see the value of "testComboBoxCtrl" got changed with immediate effect - which i want to debug and understand. Please recommend the ways if there are any.
Infragistics.Win.UltraWinEditors.UltraComboEditor testComboBoxCtrl;
SomaSundaram R
Continue reading...