9
Answers

Add Row, Return Int Pointer

Photo of David Smith

David Smith

10y
1k
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)