Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
donuts238486yI'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? -
@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
-
@billgates for example that's how resetting works https://github.com/bigworld12/...
-
donuts238486y@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/... -
@billgates NotifyBase IS INotifyPropertyChanged + INotifyPropertyChanging + INotifyDataError
-
@billgates also this library uses reflection, which I avoided as much as possible in this project
a project to remove many boilerplate code from .net applications
a project to remove many boilerplate code from .net applications