This question is locked. New answers and comments are not allowed.
Hi
Is it possible to modify the default settings for "Add stubs for Required Members". For example it'll make a property like this:
I'm wondering if I could add things to the public getter and setter generator (eg. return a field and/or add NotifyPropertyChanged)? That would be most useful. :)
Is it possible to modify the default settings for "Add stubs for Required Members". For example it'll make a property like this:
public Asset asset{ get { // TODO: Implement this property getter throw new NotImplementedException(); } set { // TODO: Implement this property setter throw new NotImplementedException(); }}