C# language feature:
applies to
- properties and methods of classes
benefit
- Partials are useful in
- 1) allowing mix of hand coding (developers) and auto generated code (e.g. visual studio wrapper, generated code).
- 2) large projects facilitating multiple developers to work on a class/project at the same time.
how to use
- Precede the class declaration wih
partial
keyword modifier.
example: