问题
How can I parse json from such as twitter etc in vb.net applications.
回答1:
Use the DataContractJsonSerializer class of the System.Runtime.Serialization.Json namespace. You can use it's ReadObject method to deserialize the JSON stream.
回答2:
You can use the JSon.Net library. I've never used it from VB.net but I assume it's CLS-compliant and it should work OK.
来源:https://stackoverflow.com/questions/5451119/vb-net-parsing-json