3
Reply

What is a structure in C#?

    Structure is like a class But structure is value type

    In C#, a structure is a value type data type. It helps you to make a single variable hold related data of various data types. The struct keyword is used for creating a structure.

    Structure is like a class But structure is value type