2
Reply

What are the differences between a class and structure?

    classes are reference types and structs are value types.structures do not support inheritance.structures cannot have default constructor.

    Structure is value type while Class is reference type