1
Reply

What is the difference between a struct and a class in C#?

Rangoli

Rangoli

Nov 28, 2006
4.1k
0

    1.struct is value type and while class is reference type. 2.structs are stored in stack while classs is in heap. 3.struct can't inherite from other struct while class can.

    manikanta
    November 29, 2006
    0