maniac84
Full Member level 6
Hi guys,
Recently been studying c# coding. Meet up with the code below:
This code will show the error message : Object reference not set to an instance of an object.
May I know what is the significance of this error message?
How do I replace it with my own error message?
Recently been studying c# coding. Meet up with the code below:
Code:
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error");
}
This code will show the error message : Object reference not set to an instance of an object.
May I know what is the significance of this error message?
How do I replace it with my own error message?