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"]); }
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.