Sorry if I'm missing something, anytime I grab the value of a given feature.ColumnValue (when the value is of type Integer in the shape file), I get the following example result type: 4.15000000000e+ It works fine on string values. What am I doing wrong?
For i As Integer = 0 To feature.ColumnValues.Count - 1
tmpVal = feature.ColumnValues.ElementAt(i).Value.ToString
Next