Temperature value = Tempurature.Low;
if (value == Tempurature.Low)
{
Console.WriteLine("Temperature is Low..");
}
உதாரணம்
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
enum Tempurature
{
Low,
Medium,
High,
};
private void button1_Click(object sender, EventArgs e)
{
Temperature value = Tempurature.Low;
if (value == Tempurature.Low)
` {
MessageBox.Show ("Temperature is Low..");
}
}
}
}
முன்னிருப்பாக enum இல் உள்ள ஒவ்வொரு தனிமத்தின் அடிப்படை வகை int ஆகும். முழு எண்ணாக மாற்ற மேலே எடுத்துக்காட்டுடன் முயற்சித்தால், அதன் முடிவைக் காணலாம்:
Temperature value = Tempurature.Low;
int tem= (int)value;
Console.WriteLine("Temperature value is.." + tem);
வெளியீடு
Temperature value is..0