What is Partial Classes in C# ?
Answers (1)
Add Answerjust imagine more than 2 or 3 people working in the same class at the same time? is it possible without server control? at that time you can use PARTIAL CLASSES, its special feature of C#.
Partial Class helps us to write a single class into multiple files. it will compile all files when the application is compiled.
can you provide a basic example for it?