Initialization of C # Enumeration

Source: Internet
Author: User

1. The question

Code #01

class Tester
{
 static void Main()
 {
    Alignment a = new Alignment();
    Console.WriteLine(a.ToString("D"));
    Alignment b = Alignment.Left;
    Console.WriteLine(b.ToString("D"));
  }
}

Assuming left is the first member of the alignment enumeration, do you think the two initialization enumeration variables are equivalent? If not, what is the difference between them?

2. Comparison of two kinds of initialization methods

2.1 The value of the first enumeration member is 0

If we do not specify the value of the first member for alignment:

//Code #02
enum Alignment
{
  Left,
  Center,
  Right
}

Code #01的输出结果将是:

0

0

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.