1
Reply

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

Rangoli

Rangoli

18y
4.5k
0
Reply

    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.