5
{
"Field1": 1,
"Field2": 2,
"Field3": {
Type: "TheMotherLoad"
}
}
,我想轉換成這個類的文檔,但保持戰地3「原始/原樣」。
public class Fields {
public int Field1 { get; set; }
public int Field2 { get; set; }
public string Field3 { get; set; }
}
結果應該是
Field1 = 1,
Field2 = 2,
Field3 = "{ Type: "TheMotherLoad" }"
可能與Json.NET?
有些人會發現'JRaw'更好,因爲它並不總是對象(可能是字符串或數字)。 – stil 2016-04-26 19:52:54