ThinkGeo.com    |     Documentation    |     Premium Support

Finding what columns exist inside a Feature

I have geoFeatures which is a Collection<Feature> done by "private Collection<Feature> geoFeatures = new Collection<Feature>();".  I need to check if a column name already exist inside the Feature.  Example: I need to add a "values1" column only if it has not been already added.  I know I can check the count with geofeatures.columnValue.Count, but that is always changing and I need to be able to look to see if geofeatures.columnValue["values1"] exist.  Thank you

Hi Josh, 
  
 I think you can get the result through following statement: 
  
 Bool isExist = feature.ColumnValues.ContainsKey("Key1") 
  
 Thanks,