The new C# code generators at work

MVP

If you struggled with INotifyPropertyChanged implementation in C#, you may like my new C# Code Generator (C# 9.0) generating the property implementation in a partial class (see docs).

This new strategy for generating code is important because it generates the code in real-time in Visual Studio but also when compiling from the CLI.

Also, they do not require no runtime dependency, as everything is just done at build time.

https://www.nuget.org/packages/SpeedyGenerators/
Sources and docs here:

https://github.com/raffaeler/SpeedyGenerators

 

HTH

0 Replies