Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# try catch with error message

try
{
	//...some code
}
catch(Exception ex)
{
	MessageBox.Show(ex.Message);
}
 
PREVIOUS NEXT
Tagged: #catch #error #message
ADD COMMENT
Topic
Name
7+8 =