juliettef / IconFontCppHeaders

C and C++ headers, C# and Python classes, Rust files and Go package for icon fonts Font Awesome, Fork Awesome, Google Material Design, Pictogrammers Material Design icons, Kenney game icons, Fontaudio, Codicons and Lucide.
zlib License
1.17k stars 148 forks source link

C#: Wrap the comments header into `<auto-generated />`, add support for UTF-32 literals #35

Closed seclerp closed 10 months ago

seclerp commented 1 year ago
  1. The <auto-generated /> header disables code analysis warnings to reduce compiler noise in a cross-editor manner.
  2. "\u..." only supports up to 4 characters, the remainder is considered a regular string character. "\U..." should be used instead for such cases.
juliettef commented 10 months ago

Added, thank you for this.