Such a variable name isn’t legal in C#.
If you’re using Json.NET to deserialize your data, you can use the JsonProperty
attribute to give it a custom name:
[JsonProperty("fg+")]
public string Fg { get; set; }
Such a variable name isn’t legal in C#.
If you’re using Json.NET to deserialize your data, you can use the JsonProperty
attribute to give it a custom name:
[JsonProperty("fg+")]
public string Fg { get; set; }