David Smith

David Smith

  • NA
  • 2k
  • 0

Add Row, Return Int Pointer

Dec 10 2014 3:37 AM
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)