Hello I have a dataset which I populate with file information I glean from a text file I'm parsing. How can I iterate through the dataset to find the highest length or if for example datatype has more than one type specified per column name?
Here is some example data
column headers
columnname, datatype, length, scale, isnullable
some data
name
System_String
3
0
False
CreateDate
System_Int32
7
0
False
Fee
System_Double
5
4,2
False
BirthYear
System_Int32
4
0
False
name
System_String
5
0
False
CreateDate
System_Int32
7
0
False Go to the complete details ...