8

a project to remove many boilerplate code from .net applications

Project Type
Existing open source project
Summary

a project to remove many boilerplate code from .net applications

Description
basically I rebuilt dynamic classes in c# to add support for many boilerplate stuff (like notifications/resetting an object/etc..) I would love to hear new ideas and suggestions (SPECIALLY ON THE NAMING SCHEME COZ IT'S FUCKING HORRIBLE) also I wouldn't mind contributing to the code :P
Tech Stack
c#, .net
Current Team Size
1
URL
Comments
  • 1
  • 0
    I'm not sure from the description or code what exactly this does it how to actually use it.

    Maybe can provide 2 example apps. One with the lib n one without?
  • 0
    @billgates the unit tests should provide a good example, basically the library introduces many helper classes that provide a couple of functionalities (like notifying when a property changes/resetting an object to its previous state/etc..) these functionalities are quite common in desktop apps, and devs tend to implement these manually in many projects, so i thought why not just make a library that implements them all
  • 0
    @billgates for example that's how resetting works https://github.com/bigworld12/...
  • 0
    @bigworld12 for notifications, are you familiar with MVVM and INotifyPropertyChanged? And DependencyObjects?

    I think actually that's what you NotifyBase is trying to do?

    I have a similar lib which I use in my own apps but is built off the above.

    https://github.com/allanx2000/...
  • 0
    @billgates NotifyBase IS INotifyPropertyChanged + INotifyPropertyChanging + INotifyDataError
  • 0
    @billgates also this library uses reflection, which I avoided as much as possible in this project
Add Comment