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"]); }
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.