I\'m getting a JSON feed from Google\'s data API and a lot of the property names start with a $ character (dollar sign).
My problem is that I can\'t create a C# clas
You could try using the [JsonProperty] attribute to specify the name:
[JsonProperty]
[JsonProperty(PropertyName = "$someName")] public string SomeName { get; set; }