good first issuenaming
倉庫指標
- Star
- (10,867 star)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
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; }
}