C# – 如何在变量名中使用无效字符

前端之家收集整理的这篇文章主要介绍了C# – 如何在变量名中使用无效字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在C#中,我正在构建一个类(简化为讨论目的),最终将被序列化为一些外部定义的 JSON
{ 
    "$schema": "http://example.com/person.json","name": "John","age": 86
    }

在我的代码中,我会有一些像:

public class Person
{
    public const string $schema= @"http://example.com/person.json";
    public string name {get;set; }
    public int age {get; set;}
}

Person person = new Person();
 person.name = "John";
 person.age = 88;

 JavaScriptSerializer serializer = new JavaScriptSerializer();
 string json = serializer.Serialize(person);

在我上面的代码中,$schema导致了一个“意外的字符’$’错误.是否有解决方法

解决方法

提供属性[DataContract]到你的Person类.

另外,你是否意味着使模式const?

[DataContract]
public class Person
{
    [DataMember(Name = "$schema")]
    public string schema { get; set; }
    public string name { get; set; }
    public int age {get; set;}
}
原文链接:https://www.f2er.com/csharp/92262.html

猜你在找的C#相关文章