Enum வகுப்பு முறைகள்

 

Methods Description
Equals(Object) Returns a boolean value indicating whether this instance is equal to a specified object.
GetNames(Type) Retrieves string array of the names of the constants in in enumType.
HasFlag(Enum) Returns true one or more bit fields are set in the current instance.
Parse(Type, String) Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent enumerated object.
ToString() Returns the string representation of the value of this instance.

Enum ப்பிளாக்ஸ் பண்புகள்

Enum ப்பிளாக்ஸ்ன் யோசனை ஒரு கணக்கீட்டு மாறியை எடுத்து பல மதிப்புகளை வைத்திருக்க அனுமதிப்பதாகும். ஒற்றை மதிப்பைக் காட்டிலும், enum ப்பிளாக்ஸ்ன் தொகுப்பைக் குறிக்கும் போதெல்லாம் இதைப் பயன்படுத்த வேண்டும்.

ஒரு Enumஐ ஒரு பட்டியலாக மாற்றவும்

பட்டியல் தரவு கட்டமைப்பிற்கு ஒரு enum ஐ எவ்வாறு மாற்றுவது என்பதை பின்வரும் நிரல் காட்டுகிறது.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        enum Week
        {
            Sunday,
            Monday,
            Tuesday,
            Wednesday,
            Thursday,
            Friday,
            Saturday
        };
        private void button1_Click(object sender, EventArgs e)
        {
            List days = Enum.GetValues(typeof(Week)).Cast().ToList();
            foreach (Week day in days)
            {
                MessageBox.Show(day.ToString());
            }
        }
    }
}


Ragam

I want to be a good person

Post a Comment (0)
Previous Post Next Post