3
Reply

What are partial classes?

Vithal Wadje

Vithal Wadje

Oct 17, 2012
2k
0

    same class name with different definition

    Ajay Tarade
    October 06, 2016
    0

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

    Vithal Wadje
    January 01, 2015
    0


    . 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.

    Vithal Wadje
    October 17, 2012
    0