Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Public Enums in Classes

Tags:

c#

enums

I have a program with a class that contains a public enum, as follows:

public class Card {     public enum card_suits     {         Clubs,         Hearts,         Spades,         Diamonds     } ... 

I want to use this elsewhere in my project, but can't do that without using Card.card_suit. Does anyone know if there's a way in C# to declare this so that I am able to declare

card_suits suit; 

Without referencing the class that it's in?

like image 918
Paul Michaels Avatar asked Mar 29 '10 19:03

Paul Michaels


People also ask

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


2 Answers

Currently, your enum is nested inside of your Card class. All you have to do is move the definition of the enum out of the class:

// A better name which follows conventions instead of card_suits is public enum CardSuit {     Clubs,     Hearts,     Spades,     Diamonds }  public class Card { } 

To Specify:

The name change from card_suits to CardSuit was suggested because Microsoft guidelines suggest Pascal Case for Enumerations and the singular form is more descriptive in this case (as a plural would suggest that you're storing multiple enumeration values by ORing them together).

like image 132
Justin Niessner Avatar answered Sep 28 '22 06:09

Justin Niessner


You need to define the enum outside of the class.

public enum card_suits {     Clubs,     Hearts,     Spades,     Diamonds }  public class Card {      // ... 

That being said, you may also want to consider using the standard naming guidelines for Enums, which would be CardSuit instead of card_suits, since Pascal Casing is suggested, and the enum is not marked with the FlagsAttribute, suggesting multiple values are appropriate in a single variable.

like image 23
Reed Copsey Avatar answered Sep 28 '22 05:09

Reed Copsey