Share enum c#

phammaitang

New member
## enum trong c#là gì?

Một enum (viết tắt để liệt kê) là một loại dữ liệu đại diện cho một tập hợp các hằng số được đặt tên.Các enum được sử dụng để xác định một nhóm các giá trị liên quan có thể được sử dụng làm loại cho các biến.Ví dụ: bạn có thể tạo một enum có tên là `daysoftheweek` có các giá trị sau:

`` `C#
công khai enum daysoftheweek
{
Chủ nhật,
Thứ hai,
Thứ ba,
Thứ Tư,
Thứ năm,
Thứ sáu,
Thứ bảy
}
`` `

Sau đó, bạn có thể sử dụng enum `daysoftheweek` để xác định các biến thuộc loại đó, chẳng hạn như:

`` `C#
Ngày hôm nay = Daysoftheweek.mayday;
`` `

Khi bạn sử dụng enum, bạn có thể sử dụng tên của Enum để chỉ các giá trị của nó, điều này giúp mã của bạn dễ hiểu hơn và dễ hiểu hơn.Ví dụ: thay vì viết `Today = 0`, bạn có thể viết` Today = daysoftheweek.monday`.

## Cách tạo một enum trong C#

Để tạo một enum trong C#, bạn sử dụng từ khóa `enum`.Mã sau đây tạo ra một enum gọi là `daysoftheweek` với các giá trị` Chủ nhật ', `Thứ hai',` Thứ ba ', `Thứ tư',` Thứ năm ', `Thứ Sáu' và` Thứ bảy ':

`` `C#
công khai enum daysoftheweek
{
Chủ nhật,
Thứ hai,
Thứ ba,
Thứ Tư,
Thứ năm,
Thứ sáu,
Thứ bảy
}
`` `

Bạn cũng có thể chỉ định loại cơ bản của một enum.Loại cơ bản mặc định là `int`, nhưng bạn cũng có thể sử dụng` uint`, `long` hoặc` ulong`.Ví dụ: mã sau đây tạo ra một enum gọi là `daysoftheweek` với loại cơ bản` uint`:

`` `C#
công khai enum daysoftheweek: uint
{
Chủ nhật = 0,
Thứ Hai = 1,
Thứ ba = 2,
Thứ tư = 3,
Thứ năm = 4,
Thứ sáu = 5,
Thứ bảy = 6
}
`` `

## Cách sử dụng Enum trong C#

Khi bạn đã tạo một enum, bạn có thể sử dụng nó để xác định các biến thuộc loại đó.Ví dụ: mã sau đây xác định một biến có tên là `ngày nay 'loại` daysoftheweek` và gán cho nó là giá trị `Thứ hai`:

`` `C#
Ngày hôm nay = Daysoftheweek.mayday;
`` `

Bạn cũng có thể sử dụng Enum để kiểm soát luồng mã của bạn.Ví dụ: mã sau sử dụng câu lệnh `if` để kiểm tra giá trị của biến 'ngày nay' và in một thông báo tương ứng:

`` `C#
if (hôm nay == daysoftheweek.monday)
{
Console.WriteLine ("Hôm nay là thứ Hai");
}
khác nếu (hôm nay == daysoftheweek.tuesday)
{
Console.WriteLine ("Hôm nay là thứ ba");
}
khác nếu (hôm nay == Daysoftheweek.wednesday)
{
Console.WriteLine ("Hôm nay là Thứ Tư");
}
khác nếu (hôm nay == Daysoftheweek.thursday)
{
Console.WriteLine ("Hôm nay là thứ năm");
}
khác nếu (hôm nay == daysoftheweek.friday)
{
Console.WriteLine ("Hôm nay là Thứ Sáu");
}
khác nếu (hôm nay == daysoftheweek.saturday)
{
Console.WriteLine ("Hôm nay là thứ bảy");
}
khác
{
Console.WriteLine ("Hôm nay là Chủ nhật");
}
`` `

## hashtags

* #csharp
* #Enum
* #Programming
* #Loại dữ liệu
* #tutorial
=======================================
## What is an enum in C#?

An enum (short for enumeration) is a data type that represents a set of named constants. Enums are used to define a group of related values that can be used as a type for variables. For example, you could create an enum called `DaysOfTheWeek` that has the following values:

```c#
public enum DaysOfTheWeek
{
Sunday,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday
}
```

You can then use the `DaysOfTheWeek` enum to define variables of that type, such as:

```c#
DaysOfTheWeek today = DaysOfTheWeek.Monday;
```

When you use an enum, you can use the enum's name to refer to its values, which makes your code more readable and easier to understand. For example, instead of writing `today = 0`, you could write `today = DaysOfTheWeek.Monday`.

## How to create an enum in C#

To create an enum in C#, you use the `enum` keyword. The following code creates an enum called `DaysOfTheWeek` with the values `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, and `Saturday`:

```c#
public enum DaysOfTheWeek
{
Sunday,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday
}
```

You can also specify the underlying type of an enum. The default underlying type is `int`, but you can also use `uint`, `long`, or `ulong`. For example, the following code creates an enum called `DaysOfTheWeek` with the underlying type `uint`:

```c#
public enum DaysOfTheWeek : uint
{
Sunday = 0,
Monday = 1,
Tuesday = 2,
Wednesday = 3,
Thursday = 4,
Friday = 5,
Saturday = 6
}
```

## How to use an enum in C#

Once you have created an enum, you can use it to define variables of that type. For example, the following code defines a variable called `today` of type `DaysOfTheWeek` and assigns it the value `Monday`:

```c#
DaysOfTheWeek today = DaysOfTheWeek.Monday;
```

You can also use an enum to control the flow of your code. For example, the following code uses an `if` statement to check the value of the `today` variable and print a message accordingly:

```c#
if (today == DaysOfTheWeek.Monday)
{
Console.WriteLine("Today is Monday");
}
else if (today == DaysOfTheWeek.Tuesday)
{
Console.WriteLine("Today is Tuesday");
}
else if (today == DaysOfTheWeek.Wednesday)
{
Console.WriteLine("Today is Wednesday");
}
else if (today == DaysOfTheWeek.Thursday)
{
Console.WriteLine("Today is Thursday");
}
else if (today == DaysOfTheWeek.Friday)
{
Console.WriteLine("Today is Friday");
}
else if (today == DaysOfTheWeek.Saturday)
{
Console.WriteLine("Today is Saturday");
}
else
{
Console.WriteLine("Today is Sunday");
}
```

## Hashtags

* #csharp
* #Enum
* #Programming
* #data-types
* #tutorial
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top