3
Reply

What are partial classes?

Vithal Wadje

Vithal Wadje

12y
2k
0
Reply

    same class name with different definition

    refer my article http://www.c-sharpcorner.com/UploadFile/0c1bb2/partial-class-in-C-Sharp100/


    . A class definition may be split into multiple physical files and still allow a seamless compilation of the classes by the compiler
    using a partial class. During compile time, the compiler groups all the classes that have the same name, and treats them as a single
    class.