ในที่สุดคุณสมบัตินี้ก็ได้รับการสนับสนุนใน C # 7.3!
ตัวอย่างต่อไปนี้ (จากตัวอย่าง dotnet ) แสดงวิธี:
public static Dictionary<int, string> EnumNamedValues<T>() where T : System.Enum
{
var result = new Dictionary<int, string>();
var values = Enum.GetValues(typeof(T));
foreach (int item in values)
result.Add(item, Enum.GetName(typeof(T), item));
return result;
}
ตรวจสอบให้แน่ใจว่าได้ตั้งค่าเวอร์ชันภาษาของคุณในโปรเจ็กต์ C # ของคุณเป็นเวอร์ชัน 7.3
คำตอบเดิมด้านล่าง:
ฉันไปเล่นเกมช้า แต่ฉันถือเป็นความท้าทายที่จะเห็นว่ามันสามารถทำได้ มันเป็นไปไม่ได้ใน C # (หรือ VB.NET แต่เลื่อนลงเพื่อ F #) แต่เป็นไปได้ใน MSIL ฉันเขียนสิ่งเล็กน้อย ....
// license: http://www.apache.org/licenses/LICENSE-2.0.html
.assembly MyThing{}
.class public abstract sealed MyThing.Thing
extends [mscorlib]System.Object
{
.method public static !!T GetEnumFromString<valuetype .ctor ([mscorlib]System.Enum) T>(string strValue,
!!T defaultValue) cil managed
{
.maxstack 2
.locals init ([0] !!T temp,
[1] !!T return_value,
[2] class [mscorlib]System.Collections.IEnumerator enumerator,
[3] class [mscorlib]System.IDisposable disposer)
// if(string.IsNullOrEmpty(strValue)) return defaultValue;
ldarg strValue
call bool [mscorlib]System.String::IsNullOrEmpty(string)
brfalse.s HASVALUE
br RETURNDEF // return default it empty
// foreach (T item in Enum.GetValues(typeof(T)))
HASVALUE:
// Enum.GetValues.GetEnumerator()
ldtoken !!T
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call class [mscorlib]System.Array [mscorlib]System.Enum::GetValues(class [mscorlib]System.Type)
callvirt instance class [mscorlib]System.Collections.IEnumerator [mscorlib]System.Array::GetEnumerator()
stloc enumerator
.try
{
CONDITION:
ldloc enumerator
callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
brfalse.s LEAVE
STATEMENTS:
// T item = (T)Enumerator.Current
ldloc enumerator
callvirt instance object [mscorlib]System.Collections.IEnumerator::get_Current()
unbox.any !!T
stloc temp
ldloca.s temp
constrained. !!T
// if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
callvirt instance string [mscorlib]System.Object::ToString()
callvirt instance string [mscorlib]System.String::ToLower()
ldarg strValue
callvirt instance string [mscorlib]System.String::Trim()
callvirt instance string [mscorlib]System.String::ToLower()
callvirt instance bool [mscorlib]System.String::Equals(string)
brfalse.s CONDITION
ldloc temp
stloc return_value
leave.s RETURNVAL
LEAVE:
leave.s RETURNDEF
}
finally
{
// ArrayList's Enumerator may or may not inherit from IDisposable
ldloc enumerator
isinst [mscorlib]System.IDisposable
stloc.s disposer
ldloc.s disposer
ldnull
ceq
brtrue.s LEAVEFINALLY
ldloc.s disposer
callvirt instance void [mscorlib]System.IDisposable::Dispose()
LEAVEFINALLY:
endfinally
}
RETURNDEF:
ldarg defaultValue
stloc return_value
RETURNVAL:
ldloc return_value
ret
}
}
ซึ่งสร้างฟังก์ชั่นที่จะมีหน้าตาแบบนี้ถ้ามันถูกต้อง C #:
T GetEnumFromString<T>(string valueString, T defaultValue) where T : Enum
จากนั้นด้วยรหัส C # ต่อไปนี้:
using MyThing;
// stuff...
private enum MyEnum { Yes, No, Okay }
static void Main(string[] args)
{
Thing.GetEnumFromString("No", MyEnum.Yes); // returns MyEnum.No
Thing.GetEnumFromString("Invalid", MyEnum.Okay); // returns MyEnum.Okay
Thing.GetEnumFromString("AnotherInvalid", 0); // compiler error, not an Enum
}
น่าเสียดายที่นี่หมายถึงการมีส่วนหนึ่งของรหัสของคุณเขียนใน MSIL แทนที่จะเป็น C # โดยมีประโยชน์เพิ่มเติมเพียงอย่างเดียวคือคุณสามารถ จำกัด วิธีการนี้System.Enum
ได้ นอกจากนี้ยังเป็นคนเกียจคร้านเพราะได้รับการรวบรวมเป็นชุดแยกต่างหาก อย่างไรก็ตามไม่ได้หมายความว่าคุณจะต้องปรับใช้ด้วยวิธีดังกล่าว
โดยการลบบรรทัดออก.assembly MyThing{}
และเรียกใช้อุลลัมม์ดังต่อไปนี้:
ilasm.exe /DLL /OUTPUT=MyThing.netmodule
คุณได้รับ netmodule แทนที่จะเป็นชุดประกอบ
น่าเสียดายที่ VS2010 (และก่อนหน้านี้เห็นได้ชัด) ไม่สนับสนุนการเพิ่มการอ้างอิง netmodule ซึ่งหมายความว่าคุณจะต้องทิ้งไว้ใน 2 แอสเซมบลีที่แยกต่างหากเมื่อคุณทำการดีบัก วิธีเดียวที่คุณสามารถเพิ่มพวกเขาเป็นส่วนหนึ่งของการชุมนุมของคุณจะเรียกใช้ csc.exe ด้วยตัวคุณเองโดยใช้/addmodule:{files}
อาร์กิวเมนต์บรรทัดคำสั่ง มันจะไม่เจ็บปวดเกินไปในสคริปต์ MSBuild แน่นอนถ้าคุณกล้าหรือโง่คุณสามารถเรียกใช้ csc ด้วยตนเองทุกครั้ง และแน่นอนว่ามันซับซ้อนมากขึ้นเนื่องจากแอสเซมบลีหลายตัวจำเป็นต้องเข้าถึง
ดังนั้นมันสามารถทำได้ในสุทธิ มันคุ้มค่ากับความพยายามพิเศษหรือไม่? อืมฉันคิดว่าฉันจะให้คุณตัดสินใจ
F # โซลูชั่นเป็นทางเลือก
เครดิตพิเศษ: ปรากฎว่ามีข้อ จำกัด ทั่วไปที่enum
เป็นไปได้ในภาษา. NET อย่างน้อยหนึ่งภาษานอกเหนือจาก MSIL: F #
type MyThing =
static member GetEnumFromString<'T when 'T :> Enum> str defaultValue: 'T =
/// protect for null (only required in interop with C#)
let str = if isNull str then String.Empty else str
Enum.GetValues(typedefof<'T>)
|> Seq.cast<_>
|> Seq.tryFind(fun v -> String.Compare(v.ToString(), str.Trim(), true) = 0)
|> function Some x -> x | None -> defaultValue
อันนี้ง่ายต่อการบำรุงรักษาเนื่องจากเป็นภาษาที่มีชื่อเสียงพร้อมการสนับสนุน Visual Studio IDE เต็มรูปแบบ แต่คุณยังต้องการโครงการแยกต่างหากในโซลูชันของคุณ แต่มันเป็นธรรมชาติผลิต IL ที่แตกต่างกันมาก (รหัสเป็นที่แตกต่างกันมาก) และอาศัยอยู่กับFSharp.Core
ห้องสมุดซึ่งเช่นเดียวกับห้องสมุดภายนอกอื่น ๆ ความต้องการที่จะเป็นส่วนหนึ่งของการกระจายของคุณ
นี่คือวิธีที่คุณสามารถใช้ (โดยพื้นฐานเหมือนกับโซลูชัน MSIL) และเพื่อแสดงว่ามันล้มเหลวอย่างถูกต้องใน structs ที่มีความหมายเหมือนกัน:
// works, result is inferred to have type StringComparison
var result = MyThing.GetEnumFromString("OrdinalIgnoreCase", StringComparison.Ordinal);
// type restriction is recognized by C#, this fails at compile time
var result = MyThing.GetEnumFromString("OrdinalIgnoreCase", 42);