Deserialize CSV string to an C# Object
问题 I have a response from Jira API , require to be deserialized into data model: com.atlassian.greenhopper.service.sprint.Sprint@40675167[id=10151,rapidViewId=171,state=CLOSED,name=Sprint 37.1,startDate=2015-07-30T16:00:22.000+03:00,endDate=2015-08-13T16:00:00.000+03:00,completeDate=2015-08-13T14:31:34.343+03:00,sequence=10151] This is actually the information of current sprint for issue. I need to deserialize it to a model like: public class Model { public string name { get; set; } ... } I have