is it possible to replace the throw new NotImplementedException();
automatically with an this.workThread.Start()
or something else if a specific method has been overriden?
Asked
Active
Viewed 108 times
0

Sosian
- 622
- 11
- 28
-
Ability to implement interface or generate a method for you is already great help (less typing, less errors). Then you can replace `throw new NotImplementedException();` with code you need. – Sinatr Oct 11 '16 at 07:53
-
2Possible duplicate of [How can I make implementation of an interface produce an auto property instead of NotImplementedException?](http://stackoverflow.com/questions/17703277/how-can-i-make-implementation-of-an-interface-produce-an-auto-property-instead-o) – lokusking Oct 11 '16 at 10:31