9
Answers

Add Row, Return Int Pointer

David Smith

David Smith

10y
700
1
What would be the logic to add row , return row int pointer below:
 
 
public static int AddRowReturnIntPointer(ref DataTable datatable)
{
try
{
return 0;
}
catch (Exception ex)
{
throw new Exception("AddRowReturnIntPointer: \n" + ex.Message);
}
Answers (9)