我有一个C#enum类型,最终会有很长的限定名。 e.g。
DataSet1.ContactLogTypeValues.ReminderToFollowupOverdueInvoice.
为了便于阅读,如果我能告诉某个特定的函数只使用名称的最后一部分,就好了...
{
using DataSet1.ContactLogTypeValues;
...
logtype = ReminderToFollowupOverdueInvoice;
...
}
是否有可能在C#中做这样的事情?
答案 0 :(得分:4)
从C#6开始,您可以使用using static
:
using static DataSet1.ContactLogTypeValues;
...
logtype = ReminderToFollowupOverdueInvoice;
...
有关更多详细信息,请参见https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-static。
答案 1 :(得分:3)
您可以使用using
指令指定别名。它将存在于文件的任何位置,而不是在一个特定的方法中。
答案 2 :(得分:3)
我意识到这可能不是您想象的解决方案,但它确实允许您编写您要求的代码。
enum ContactLogTypeValues
{
ReminderToFollowupOverdueInvoice,
AnotherValue1,
AnotherValue2,
AnotherValue3
};
static ContactLogTypeValues ReminderToFollowupOverdueInvoice = ContactLogTypeValues.ReminderToFollowupOverdueInvoice;
static ContactLogTypeValues AnotherValue1 = ContactLogTypeValues.AnotherValue1;
static ContactLogTypeValues AnotherValue2 = ContactLogTypeValues.AnotherValue2;
static ContactLogTypeValues AnotherValue3 = ContactLogTypeValues.AnotherValue3;
static void Main(string[] args)
{
var a = ReminderToFollowupOverdueInvoice;
}