Does Arcgis Runtime sdk for wpf, provide any way to store the static feature collection in a shape file ? or any other provision of storing and editing features to a file(GeoJson,shapefile,CSV) maybe, as the editing section in documentation talks about sync enabled geodatabase and online editing , but my requirement is a complete offline environment , so can the static feature collection help?
If you are using v100.2.+, you can use ShapefileFeatureTable to create/update/delete features. This inherits from FeatureTable so methods include CreateFeature, Add/Update/DeleteFeature(s)Async. You can create a FeatureLayer with this table. Is this what you are looking for?
Yes sir , I am looking for such kind of help . . Can u help me with some
kind of sample code ?