Hi,
In C#, i got sql Exception which consists of 2 lines.
I need only the 2nd line of that Exception only.
Ex:
The transaction ended in the trigger.
Table Validation failed - Name: x; Condition: m!=0
i need "Table Validation failed - Name: x; Condition: m!=0" only.
I have tried e.LineNumber but it not works well.
Can anyone help me?
Loading
chandruswami RamalingamPosted May 6, 2010, 12:00 AM
Thanks
Hector Hugo Alpizar CesenaPosted May 5, 2010, 1:44 PM
Hector Hugo Alpizar CesenaPosted Apr 29, 2010, 1:00 PM
string[] linesInArray = strMsjException.Text.Split('\n');
string strResult = linesInArray[1]; //It's a base 0 array
Check the sample code in rar file splitingEnters.rar