So I\'m in the verge of creating my first C# system. I use my vb.net system to use as my reference.
This is the code on my vb.net system:
Dim value A
int value = int.Parse(dt.Rows[0]["TransID"]);
or you can also use column index if you know it:
Assuming that required column is 3rd column in the datatable:
int value = int.Parse(dt.Rows[0][2]);