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"]); }
Membros conectados podem postar, seguir atualizações e mais. Novo aqui? Registre uma conta gratuita.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.