Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# can I access an enum without full qualified names

Tags:

c#

enums

I have a C# enum type that ends up with very long qualified names. e.g.

DataSet1.ContactLogTypeValues.ReminderToFollowupOverdueInvoice.

For readability, it would be nice if I could tell a particular function to just use the last portion of the name, something like...

{
    using DataSet1.ContactLogTypeValues;
    ...
    logtype = ReminderToFollowupOverdueInvoice;
    ...
}

Is it possible to do anything like this in C#?

like image 618
user1961169 Avatar asked Nov 21 '13 01:11

user1961169


People also ask

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 ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C language basics?

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.


2 Answers

Since C# 6, you can use using static:

using static DataSet1.ContactLogTypeValues;
...
logtype = ReminderToFollowupOverdueInvoice;
...

See https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-static for more details.

like image 84
jcsahnwaldt Reinstate Monica Avatar answered Sep 19 '22 05:09

jcsahnwaldt Reinstate Monica


You can use using directive to specify an alias. It will exist everywhere in the file, not in one particular method though.

like image 27
Nikolai Samteladze Avatar answered Sep 21 '22 05:09

Nikolai Samteladze