glideapps/quicktype
Translate invalid name characters into equivalent names
Geschlossen
#631 geöffnet am 06.03.2018
good first issuenaming
Repository-Metriken
- Stars
- (10.867 Sterne)
- PR-Merge-Metriken
- (PR-Metriken ausstehend)
Beschreibung
Demonstrated by NotExecutable on Reddit:
{"#": "foo", "##": "bar" }
produces this type with strange propery names in C#:
public partial class Root
{
public string Empty { get; set; }
public string Purple { get; set; }
}
This would be nicer:
public partial class Root
{
public string Hash { get; set; }
public string HashHash { get; set; }
}