

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Classes vs Structures in C#
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.
When you define a class, you define a blueprint for a data type.
The following are the differences between classes and structures in C# −
Classes are reference types and structs are value types
Unlike classes, structures cannot inherit other structures or classes.
Structures cannot be used as a base for other structures or classes.
When you create a struct object using the New operator, it gets created and the appropriate constructor is called. Unlike classes, structs can be instantiated without using the New operator.
Structures do not support inheritance
Structures cannot have a default constructor
- Related Questions & Answers
- Abstract vs Sealed Classes vs Class Members in C#
- Explain Inheritance vs Instantiation for Python classes.
- Structures in C
- Difference between C structures and C++ structures
- Kernel Data Structures
- Kinetic Data Structures
- Pseudo-classes and CSS Classes
- Pseudo-classes and all CSS Classes
- Inbuilt Data Structures in C#
- Inbuilt Data Structures in Python
- Tail Recursion in Data Structures
- Bernoulli Distribution in Data Structures
- Binomial Distribution in Data Structures
- Geometric Distribution in Data Structures
- Stack ADT in Data Structures