What is Partial class
| Partial class can also be split into two or more classes. We can also say that a class be physically separated into other parts of the class but within the same namespace and also one more important thing the parts must use the partial keyword.And other classes should also have the same access modifier.When compile is done, all the partial classes will be treated as a single class. Let us list some advantages of having partial classes.
• Allows a clean |
|
| separation of business logic layer and the user interface.
• The UI code can be hidden from the developer.
• Makes the debugging easier.. | |
