What is the use of Partial class in C#
- By Using Partial Classes, multiple developer can work on the same class easily.
Partial classes are mainly used by code generator to keep different concerns separate
you can also define Partial methods as well where a developer can simply define the method and the other developer can implement that.
- Partial classes are mainly used by code generator to keep different concerns separate.
- you can also define Partial methods as well where a developer can simply define the method and the other developer can implement that.
No comments