1

我正在尝试反序列化以下对象:

{
    "start_time": "2013-05-21T10:58:32Z", 
    "result": 1, 
    "message": " ok", 
    "operator": "http://127.0.0.1:8000/api/users/2/"
}

如何编写这个对象的 C# 模型?“操作员”关键字不能用作模型名称,我还没有找到任何可用于映射名称的属性。

有任何想法吗?

4

1 回答 1

3

猜测:

public class SomeType {
   public DateTime start_time {get;set;}
   public int result {get;set;}
   public string message {get;set;}
   public string @operator {get;set;}
}

前缀可@用于转义任何 C# 关键字;@int,@string@for

于 2013-05-28T12:26:00.317 回答