public object Convert(object value, .....) { var dict = value as IDictionary<string, object>; return format.String("City = {0} State = {1}", dict["City"].ToString(), dict["State"].ToString()); }
public object Convert(object value, .....) { ObservableDictionary dict = value as ObservableDictionary; return format.String("City = {0} State = {1}", dict["City"], dict["State"]); }
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.