Hi to all,
i have a featurelayer on map, likje this:
FeatureLayer f = _Map.Layers["MyLayer"] as FeatureLayer;
I have also a query task who give me a featureset of graphics objects: then i add these graphics objects to f like this:
foreach (Graphic graphic in args.FeatureSet.Features)
f.Graphics.Add(graphic);
after these the application crash. if i rem these last 2 lines of code all works.
The same code work fine on the same layer if i use API 2.2 beta
Has anyone notice that whith api 2.3 ?
Thanks
GP