... Graphic g = featureLayer.Graphics[idx]; // idx = index in GraphicCollection of FeatureLayer for edit g.Attributes["ATTRIBUTE_NAME"] = NEW_VALUE; ...
private void fLayer_Initialized(object sender, EventArgs e) { fLayer.UpdateCompleted += new EventHandler(fLayer_UpdateCompleted); fLayer.Update(); } private void fLayer_UpdateCompleted(object sender, EventArgs e) { MessageBox.Show(this.fLayer.Graphics.Count.ToString()); // this is not zero }