TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About C# enum
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (2)
Sardar Mudassar Ali Khan (1)
Jitendra Mesavaniya (1)
Ajay Kumar (1)
C# Curator (1)
Vulpes (1)
Lajapathy Arun (1)
Abhishek Jaiswal (1)
Amit Choudhary (1)
Related resources for C# enum
No resource found
Using String-Based Enums in C#
6/10/2024 8:02:49 AM.
In many applications, it is necessary to represent enumerations with string values rather than their default integer values. This can be particularly useful when working with JSON, XML, or other data
Enums in C#: Syntax, Usage, and Best Practices
3/26/2024 5:21:08 AM.
In C#, enums (short for enumerations) offer a powerful tool for developers to define a set of named integral constants. In this article, we'll delve into the fundamentals of enums in C# and explor
Mastering C# Enums: An Essential Guide with Examples
6/13/2023 5:06:05 AM.
Enum in C# 11
6/12/2023 8:40:47 AM.
C# enum is a value type with a set of related named constants often referred to as an enumerator list.
Top 7 C# Enum Code Examples
4/6/2023 6:30:08 AM.
List of top questions and answers on C# enums.
Convert an Enum to a String in C#
2/21/2023 12:24:48 PM.
This code example shows how to convert an enum to a string in C#.
How to add methods to an enum in C#
8/23/2022 5:00:56 AM.
Given that C# was influenced by C and C++, this is no surprise as enums in those languages only contain constants as well. However, Java allows enums to include methods so how can we do something simi
How To Play With Enum in C#
1/9/2019 9:10:31 PM.
In this article you will see use of Enum data type in C#. convert enum to String, convert String to enum.
Constant and Enumeration in C#
3/27/2014 11:21:31 AM.
This article explains two very useful concepts of C#. I'll also explain where to use these keywords and how to use them to increase readability and decrease complexities.
Enum Operations For Name Value Attributes
6/10/2013 4:26:19 PM.
We'll see in this article how to manipulate the values, names and attributes using Reflection at run time.