I need help on this with some debugging as I am unable to use visual studio’s debugger for some reason, any ideas on how to display the debugging information with a message box?
private void ClickforError(object sender, EventArgs e)
{
MessageBox.Show("");
}
I think I understand. You want a way of automatically displaying all your variables values at a given point in your code.
See this question and this question to see why this is not easy.
this looks like a similar question to yours and suggests looking at other inspection tools such as Smart Inspect