For the following datatable column, what is the fastest way to get the min and max values?
AccountLevel
0
1
2
3
Easiar approach on datatable could be:
int minLavel = Convert.ToInt32(dt.Compute("min([AccountLevel])", string.Empty));