如何反序列化“ref”参数

时间:2015-05-05 20:31:18

标签: c# .net json json-deserialization jive

我正在尝试解析包含名为ref的参数的json文件。我正在反序列化为类结构:

public class JiveContentObject
{
   public int id { get; set;}
   public string subject { get; set;}
   ..etc
}

但是,由于public string ref {get; set;}是c#中的关键字,因此无法完全编写ref。有什么方法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:7)

使用@

作为标识符的前缀
public class JiveContentObject
{
    public int id { get; set; }
    public string subject { get; set; }
    public string @ref { get; set; }
}

这正是它的用途。