So I'm sending an HTTPWebRequest to a service and they are returning a userid in JSON.
They are returning: {"id: 123456"}
How do I process this? Should I just do a split on the " : " and take the second element or is there a proper way of doing this?
Thanks guys.