0
反序列化JSON對象我有一個像使用newtonsoft JSON
{"NewMessage":[{"Id":-1,"Message":"Test","MessageName":"test1"}],"OldMessage":[]}
一個JSON,我需要在我的類對象進行反序列化JSON此。
我的班級
public class NewMessage{
public int Id{get;set;}
public string Message{get;set;}
public string MessageName{get;set;}
}
public class OldMessage{
public int Id{get;set;}
public string Message{get;set;}
public string MessageName{get;set;}
}
豈能用newtonsoft.json實現這一目標。任何人都可以幫忙在此先感謝