简体   繁体   中英

How to Deserialize in Boo language

Why does the second line give an error?

items = serializer.DeserializeObject(json)
value = items ["key"]

Error: Type 'object' does not support slicing. (BCE0048)

I tried various ways to indicate that "items" is a dictionary, to no avail.

解:

items as Dictionary [of string, object] = serializer.DeserializeObject(json)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM