How do C# classes deal with dollar signs in JSON?

You could try using the [JsonProperty] attribute to specify the name:

[JsonProperty(PropertyName = "$someName")]
public string SomeName { get; set; }

Leave a Comment