Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
C#
2.0K+ articles
Programming Language
336+ articles
CSharp-Basics
39+ articles
CSharp-Generic-Queue
11+ articles
CSharp-Stack-Class
3+ articles
CSharp-Queue-Class
3+ articles
CSharp-HashTable
2+ articles
CSharp-DSA
1+ articles
CSharp-HashSet
1+ articles
CSharp-data-types
6 posts
Recent Articles
C# Data Structures
Last Updated: 23 July 2025
Data Structures are an important part of programming language. When we are creating solutions for real-world problems, choosing the right data structure is critical becaus...
read more
C#
CSharp-data-types
CSharp-HashSet
CSharp-HashTable
CSharp-Stack-Class
CSharp-Queue-Class
CSharp-Generic-Queue
CSharp-Generic-List
CSharp-LinkedList
CSharp-Tuple
CSharp-Deque
CSharp-DSA
C# Program to Check a Specified Type is a Primitive Data Type or Not
Last Updated: 16 November 2021
In C#, data types are used to specify the type of data that a variable can hold. There are two types of data types available in C# that is, primitive and non-primitive dat...
read more
C#
Picked
C# Programs
CSharp-data-types
Enumeration (enum) in C#
Last Updated: 11 September 2025
Enumeration (enum) in C# is a special value type that defines a set of named constants. It improves code readability by giving meaningful names to numeric values.Example: ...
read more
C#
CSharp-Basics
CSharp-data-types
Type Casting in C#
Last Updated: 20 April 2026
Type casting means converting a variable of one data type into another, ensuring compatibility when assigning data between different types. For Example:C#using System;clas...
read more
C#
CSharp-Basics
CSharp-data-types
C# Boxing And Unboxing
Last Updated: 11 July 2025
Boxing and unboxing are important concepts inC#. The C# Type System containsthree data types that are Value Types (int, char, etc),Reference Types (object),andPointer Type...
read more
Programming Language
C#
CSharp-Basics
CSharp-data-types
Data Types in C#
Last Updated: 03 August 2026
Data types specify the type of data that a variable can store. Whenever a variable is declared in C#, the compiler allocates memory based on the data type.Data Types in C#...
read more
C#
CSharp-Basics
CSharp-data-types