Hi,
I need to sort a feature collection using the column vale of the feature. How may I do this?
Collection<feature> _Features = new Collection<feature>();
_features.OrderBy(.....??????
thanks.
jm.
Hi,
I need to sort a feature collection using the column vale of the feature. How may I do this?
Collection<feature> _Features = new Collection<feature>();
_features.OrderBy(.....??????
thanks.
jm.
I found how to
_features.OrderBy(f => double.Parse(f.ColumnValues["ANNL_SLS_DLR_AMT_SUM"]));
Hi Jean-Maire,
Thanks for sharing your findings!