Json2CSharp / Json2CSharpCodeGenerator

Microsoft Reciprocal License
305 stars 83 forks source link

Keep Underscores : _ not working in property names #39

Open emileemilsson opened 3 years ago

emileemilsson commented 3 years ago

JsonPropertyNane is not working properly in c# .net core

I tried [JsonPropertyName("security_skill")] public SecuritySkill SecuritySkill;

and had to manually change it to

    [JsonPropertyName("security_skill")]
    public Security_Skill Security_Skill;
Json2CSharp commented 3 years ago

Thanks for letting me know ! i will look into this