วิธีที่int
จะถูกโยนไปยังenum
ใน C #?
วิธีที่int
จะถูกโยนไปยังenum
ใน C #?
คำตอบ:
จากสตริง:
YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);
// The foo.ToString().Contains(",") check is necessary for enumerations marked with an [Flags] attribute
if (!Enum.IsDefined(typeof(YourEnum), foo) && !foo.ToString().Contains(","))
{
throw new InvalidOperationException($"{yourString} is not an underlying value of the YourEnum enumeration.")
}
จาก int:
YourEnum foo = (YourEnum)yourInt;
ปรับปรุง:
จากหมายเลขคุณยังสามารถ
YourEnum foo = (YourEnum)Enum.ToObject(typeof(YourEnum) , yourInt);
var result = Enum.TryParse(yourString, out yourEnum)
วัน (และตรวจสอบผลลัพธ์เพื่อพิจารณาว่าการแปลงล้มเหลว)
Enum.Parse
จะต้องคำนึงถึงตัวพิมพ์เล็กและตัวพิมพ์ใหญ่โดยการเพิ่มtrue
ค่าพารามิเตอร์ในการโทร:YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString, true);
เพียงแค่โยนมัน
MyEnum e = (MyEnum)3;
คุณสามารถตรวจสอบว่าอยู่ในช่วงที่ใช้Enum หรือไม่ IsDefined :
if (Enum.IsDefined(typeof(MyEnum), 3)) { ... }
Enum.IsDefined
จะทราบว่ามันอาจเป็นอันตราย: msdn.microsoft.com/en-us/library/ms229025(VS.90).aspx
IsDefined
เพื่อตรวจสอบค่าที่ป้อนเข้า, คุณปล่อยให้ตัวเองมีความเสี่ยงให้กับประชาชนเพิ่มค่า enum ใหม่ในภายหลังซึ่งจะผ่านการIsDefined
ตรวจสอบ (ตั้งแต่ใหม่ มีอยู่ในรหัสใหม่) แต่อาจใช้ไม่ได้กับรหัสต้นฉบับที่คุณเขียน ดังนั้นจึงปลอดภัยกว่าที่จะระบุค่า enum ที่รหัสของคุณสามารถจัดการได้อย่างชัดเจน
หรือใช้วิธีการขยายแทนการซับเดี่ยว:
public static T ToEnum<T>(this string enumString)
{
return (T) Enum.Parse(typeof (T), enumString);
}
การใช้งาน:
Color colorEnum = "Red".ToEnum<Color>();
หรือ
string color = "Red";
var colorEnum = color.ToEnum<Color>();
System.String
ดูเหมือนว่าเนมสเปซมลพิษ
ฉันคิดว่าจะได้คำตอบที่สมบูรณ์คนต้องรู้ว่า enums ทำงานอย่างไรภายในใน. NET
วิธีการทำงานของ
enum ใน. NET เป็นโครงสร้างที่แม็พชุดของค่า (ฟิลด์) กับชนิดพื้นฐาน (ค่าดีฟอลต์คือint
) อย่างไรก็ตามคุณสามารถเลือกประเภทอินทิกรัลที่ enum แม็พของคุณไปที่:
public enum Foo : short
ในกรณีนี้ enum ถูกแมปกับshort
ชนิดข้อมูลซึ่งหมายความว่ามันจะถูกเก็บไว้ในหน่วยความจำสั้นและจะทำตัวสั้นเมื่อคุณส่งและใช้งาน
หากคุณมองจากมุมมองของ IL, enum (ปกติ, int) จะมีลักษณะเช่นนี้:
.class public auto ansi serializable sealed BarFlag extends System.Enum
{
.custom instance void System.FlagsAttribute::.ctor()
.custom instance void ComVisibleAttribute::.ctor(bool) = { bool(true) }
.field public static literal valuetype BarFlag AllFlags = int32(0x3fff)
.field public static literal valuetype BarFlag Foo1 = int32(1)
.field public static literal valuetype BarFlag Foo2 = int32(0x2000)
// and so on for all flags or enum values
.field public specialname rtspecialname int32 value__
}
สิ่งที่ควรได้รับความสนใจจากที่นี่คือที่value__
เก็บแยกต่างหากจากค่า enum ในกรณีของ enum Foo
ด้านบนชนิดของvalue__
คือ int16 นี้โดยทั่วไปหมายความว่าคุณสามารถจัดเก็บสิ่งที่คุณต้องการใน enum, ตราบใดที่ตรงกับประเภท
ณ จุดนี้ฉันต้องการชี้ให้เห็นว่าSystem.Enum
เป็นประเภทค่าซึ่งโดยทั่วไปหมายความว่าBarFlag
จะใช้หน่วยความจำ 4 ไบต์และFoo
จะเพิ่มขึ้น 2 - เช่นขนาดของประเภทพื้นฐาน (จริง ๆ แล้วซับซ้อนกว่านั้น แต่ ฮ้า ... )
คำตอบ
ดังนั้นถ้าคุณมีจำนวนเต็มที่คุณต้องการแมปกับ enum รันไทม์เพียงแค่ทำ 2 สิ่ง: คัดลอก 4 ไบต์และตั้งชื่ออย่างอื่น (ชื่อของ enum) การคัดลอกนั้นเป็นนัยเพราะข้อมูลถูกเก็บไว้เป็นประเภทของค่าซึ่งหมายความว่าหากคุณใช้รหัสที่ไม่มีการจัดการคุณสามารถแลกเปลี่ยน enums และจำนวนเต็มโดยไม่ต้องคัดลอกข้อมูล
เพื่อให้ปลอดภัยฉันคิดว่าเป็นวิธีปฏิบัติที่ดีที่สุดที่จะทราบว่าประเภทพื้นฐานนั้นเหมือนกันหรือเปลี่ยนแปลงได้โดยปริยายและเพื่อให้แน่ใจว่ามีค่า enum อยู่ (ไม่ได้ตรวจสอบโดยค่าเริ่มต้น!)
หากต้องการดูวิธีการทำงานของลองรหัสต่อไปนี้:
public enum MyEnum : int
{
Foo = 1,
Bar = 2,
Mek = 5
}
static void Main(string[] args)
{
var e1 = (MyEnum)5;
var e2 = (MyEnum)6;
Console.WriteLine("{0} {1}", e1, e2);
Console.ReadLine();
}
โปรดทราบว่าการส่งไปe2
ยังยังใช้งานได้! จากมุมมองของคอมไพเลอร์ด้านบนสิ่งนี้สมเหตุสมผล: value__
ฟิลด์นั้นเต็มไปด้วย 5 หรือ 6 และเมื่อมีการConsole.WriteLine
โทรToString()
ชื่อของe1
จะถูกแก้ไขในขณะที่ชื่อของe2
ไม่
ถ้านั่นไม่ใช่สิ่งที่คุณตั้งใจใช้Enum.IsDefined(typeof(MyEnum), 6)
เพื่อตรวจสอบว่าค่าที่คุณกำลังส่งแผนที่ไปยัง enum ที่กำหนดไว้หรือไม่
โปรดทราบว่าฉันชัดเจนเกี่ยวกับประเภทพื้นฐานของ enum แม้ว่าคอมไพเลอร์จะตรวจสอบสิ่งนี้จริง ๆ ฉันกำลังทำสิ่งนี้เพื่อให้แน่ใจว่าฉันจะไม่เจอความประหลาดใจใด ๆ หากต้องการดูการกระทำที่น่าประหลาดใจเหล่านี้คุณสามารถใช้รหัสต่อไปนี้ (จริงๆแล้วฉันเคยเห็นสิ่งนี้เกิดขึ้นมากมายในรหัสฐานข้อมูล):
public enum MyEnum : short
{
Mek = 5
}
static void Main(string[] args)
{
var e1 = (MyEnum)32769; // will not compile, out of bounds for a short
object o = 5;
var e2 = (MyEnum)o; // will throw at runtime, because o is of type int
Console.WriteLine("{0} {1}", e1, e2);
Console.ReadLine();
}
int
! = short
มันจะโยน (การแกะกล่องล้มเหลว) ถ้าคุณทำobject o = (short)5;
มันจะได้ผลเพราะประเภทจะตรงกัน มันไม่เกี่ยวกับช่วงมันเกี่ยวกับประเภท
นำตัวอย่างต่อไปนี้:
int one = 1;
MyEnum e = (MyEnum)one;
ฉันใช้รหัสนี้เพื่อส่งไปยัง enum ของฉัน:
if (typeof(YourEnum).IsEnumDefined(valueToCast)) return (YourEnum)valueToCast;
else { //handle it here, if its not defined }
ฉันคิดว่ามันเป็นทางออกที่ดีที่สุด
ด้านล่างเป็นคลาสยูทิลิตี้ที่ดีสำหรับ Enums
public static class EnumHelper
{
public static int[] ToIntArray<T>(T[] value)
{
int[] result = new int[value.Length];
for (int i = 0; i < value.Length; i++)
result[i] = Convert.ToInt32(value[i]);
return result;
}
public static T[] FromIntArray<T>(int[] value)
{
T[] result = new T[value.Length];
for (int i = 0; i < value.Length; i++)
result[i] = (T)Enum.ToObject(typeof(T),value[i]);
return result;
}
internal static T Parse<T>(string value, T defaultValue)
{
if (Enum.IsDefined(typeof(T), value))
return (T) Enum.Parse(typeof (T), value);
int num;
if(int.TryParse(value,out num))
{
if (Enum.IsDefined(typeof(T), num))
return (T)Enum.ToObject(typeof(T), num);
}
return defaultValue;
}
}
สำหรับค่าตัวเลขสิ่งนี้จะปลอดภัยกว่าเนื่องจากจะส่งคืนวัตถุไม่ว่าจะเกิดอะไรขึ้น:
public static class EnumEx
{
static public bool TryConvert<T>(int value, out T result)
{
result = default(T);
bool success = Enum.IsDefined(typeof(T), value);
if (success)
{
result = (T)Enum.ToObject(typeof(T), value);
}
return success;
}
}
หากคุณพร้อมสำหรับ 4.0 .NET Framework มีฟังก์ชัน Enum.TryParse ()ใหม่ที่มีประโยชน์มากและเล่นได้ดีกับแอตทริบิวต์ [Flags] ดูวิธี Enum.TryParse (สตริง, TEnum%)
หากคุณมีจำนวนเต็มที่ทำหน้าที่เป็น bitmask และสามารถแทนค่าหนึ่งค่าหรือมากกว่าในการแจงนับ [Flags] คุณสามารถใช้รหัสนี้เพื่อวิเคราะห์ค่าแฟล็กแต่ละรายการลงในรายการ:
for (var flagIterator = 0; flagIterator < 32; flagIterator++)
{
// Determine the bit value (1,2,4,...,Int32.MinValue)
int bitValue = 1 << flagIterator;
// Check to see if the current flag exists in the bit mask
if ((intValue & bitValue) != 0)
{
// If the current flag exists in the enumeration, then we can add that value to the list
// if the enumeration has that flag defined
if (Enum.IsDefined(typeof(MyEnum), bitValue))
Console.WriteLine((MyEnum)bitValue);
}
}
โปรดทราบว่านี่ถือว่าประเภทพื้นฐานของenum
มันเป็นจำนวนเต็ม 32 บิตลงนาม หากเป็นประเภทตัวเลขที่แตกต่างกันคุณจะต้องเปลี่ยน hardcoded 32 เพื่อสะท้อนบิตในประเภทนั้น (หรือได้มาโดยทางโปรแกรมโดยใช้Enum.GetUnderlyingType()
)
บางครั้งคุณมีวัตถุMyEnum
ประเภท ชอบ
var MyEnumType = typeof(MyEnumType);
แล้ว:
Enum.ToObject(typeof(MyEnum), 3)
นี่คือการแจงนับวิธีการแปลงที่ปลอดภัยทราบการตั้งค่าสถานะ:
public static bool TryConvertToEnum<T>(this int instance, out T result)
where T: Enum
{
var enumType = typeof (T);
var success = Enum.IsDefined(enumType, instance);
if (success)
{
result = (T)Enum.ToObject(enumType, instance);
}
else
{
result = default(T);
}
return success;
}
Enum
แทนที่จะstruct
หมายถึงเราไม่จำเป็นต้องพึ่งพาการตรวจสอบรันไทม์!
ในการแปลงสตริงเป็น ENUM หรือ int เป็นค่าคงที่ ENUM เราจำเป็นต้องใช้ฟังก์ชัน Enum.Parse นี่คือวิดีโอ youtube https://www.youtube.com/watch?v=4nhx4VwdRDk ซึ่งแสดงให้เห็นจริง ๆ ว่ามีสตริงและเหมือนกันกับ int
รหัสไปตามที่แสดงด้านล่างโดยที่ "สีแดง" เป็นสตริงและ "MyColors" เป็นสี ENUM ซึ่งมีค่าคงที่สี
MyColors EnumColors = (MyColors)Enum.Parse(typeof(MyColors), "Red");
หนีจากคำถามเดิมเล็กน้อย แต่ฉันพบคำตอบสำหรับคำถาม Stack Overflow รับค่า int จาก enumมีประโยชน์ สร้างคลาสแบบสแตติกที่มีpublic const int
คุณสมบัติช่วยให้คุณสามารถรวบรวมกลุ่มของint
ค่าคงที่ที่เกี่ยวข้องได้อย่างง่ายดายจากนั้นไม่ต้องint
ใช้เมื่อใช้
public static class Question
{
public static readonly int Role = 2;
public static readonly int ProjectFunding = 3;
public static readonly int TotalEmployee = 4;
public static readonly int NumberOfServers = 5;
public static readonly int TopBusinessConcern = 6;
}
เห็นได้ชัดว่าฟังก์ชั่น enum บางอย่างจะหายไป แต่สำหรับการจัดเก็บค่าคงที่ id ของฐานข้อมูลจำนวนมากดูเหมือนว่าจะเป็นวิธีที่ค่อนข้างเป็นระเบียบ
แยกวิเคราะห์จำนวนเต็มหรือสตริงไปยังเป้าหมาย enum ด้วยการจับคู่บางส่วนใน dot.NET 4.0 โดยใช้ข้อมูลทั่วไปเช่นในยูทิลิตี้ระดับของ Tawani ด้านบน ฉันใช้มันเพื่อแปลงตัวแปรสวิตช์บรรทัดคำสั่งซึ่งอาจไม่สมบูรณ์ เนื่องจาก enum ไม่สามารถเป็นโมฆะได้คุณควรระบุค่าเริ่มต้นตามหลักเหตุผล มันสามารถถูกเรียกเช่นนี้:
var result = EnumParser<MyEnum>.Parse(valueToParse, MyEnum.FirstValue);
นี่คือรหัส:
using System;
public class EnumParser<T> where T : struct
{
public static T Parse(int toParse, T defaultVal)
{
return Parse(toParse + "", defaultVal);
}
public static T Parse(string toParse, T defaultVal)
{
T enumVal = defaultVal;
if (defaultVal is Enum && !String.IsNullOrEmpty(toParse))
{
int index;
if (int.TryParse(toParse, out index))
{
Enum.TryParse(index + "", out enumVal);
}
else
{
if (!Enum.TryParse<T>(toParse + "", true, out enumVal))
{
MatchPartialName(toParse, ref enumVal);
}
}
}
return enumVal;
}
public static void MatchPartialName(string toParse, ref T enumVal)
{
foreach (string member in enumVal.GetType().GetEnumNames())
{
if (member.ToLower().Contains(toParse.ToLower()))
{
if (Enum.TryParse<T>(member + "", out enumVal))
{
break;
}
}
}
}
}
FYI: คำถามเกี่ยวกับจำนวนเต็มซึ่งไม่มีใครพูดถึงจะแปลงอย่างชัดเจนใน Enum.TryParse ()
จากสตริง: (Enum.Parse ล้าสมัยให้ใช้ Enum.TryParse)
enum Importance
{}
Importance importance;
if (Enum.TryParse(value, out importance))
{
}
ต่อไปนี้เป็นวิธีการขยายที่ดีกว่าเล็กน้อย
public static string ToEnumString<TEnum>(this int enumValue)
{
var enumString = enumValue.ToString();
if (Enum.IsDefined(typeof(TEnum), enumValue))
{
enumString = ((TEnum) Enum.ToObject(typeof (TEnum), enumValue)).ToString();
}
return enumString;
}
ในกรณีของฉันฉันต้องการคืนค่า enum จากบริการ WCF ฉันยังต้องการชื่อที่เป็นมิตรไม่ใช่แค่ enum.ToString ()
นี่คือคลาส WCF ของฉัน
[DataContract]
public class EnumMember
{
[DataMember]
public string Description { get; set; }
[DataMember]
public int Value { get; set; }
public static List<EnumMember> ConvertToList<T>()
{
Type type = typeof(T);
if (!type.IsEnum)
{
throw new ArgumentException("T must be of type enumeration.");
}
var members = new List<EnumMember>();
foreach (string item in System.Enum.GetNames(type))
{
var enumType = System.Enum.Parse(type, item);
members.Add(
new EnumMember() { Description = enumType.GetDescriptionValue(), Value = ((IConvertible)enumType).ToInt32(null) });
}
return members;
}
}
นี่คือวิธีการขยายที่ได้รับรายละเอียดจาก Enum
public static string GetDescriptionValue<T>(this T source)
{
FieldInfo fileInfo = source.GetType().GetField(source.ToString());
DescriptionAttribute[] attributes = (DescriptionAttribute[])fileInfo.GetCustomAttributes(typeof(DescriptionAttribute), false);
if (attributes != null && attributes.Length > 0)
{
return attributes[0].Description;
}
else
{
return source.ToString();
}
}
การดำเนินงาน:
return EnumMember.ConvertToList<YourType>();
ฉันไม่รู้อีกต่อไปแล้วว่าฉันจะได้รับส่วนขยาย enum นี้ได้อย่างไร แต่มาจาก stackoverflow ฉันขอโทษสำหรับสิ่งนี้! แต่ฉันเอาอันนี้มาและแก้ไขให้กับ enums ด้วยธง สำหรับ enums กับ Flags ฉันทำสิ่งนี้:
public static class Enum<T> where T : struct
{
private static readonly IEnumerable<T> All = Enum.GetValues(typeof (T)).Cast<T>();
private static readonly Dictionary<int, T> Values = All.ToDictionary(k => Convert.ToInt32(k));
public static T? CastOrNull(int value)
{
T foundValue;
if (Values.TryGetValue(value, out foundValue))
{
return foundValue;
}
// For enums with Flags-Attribut.
try
{
bool isFlag = typeof(T).GetCustomAttributes(typeof(FlagsAttribute), false).Length > 0;
if (isFlag)
{
int existingIntValue = 0;
foreach (T t in Enum.GetValues(typeof(T)))
{
if ((value & Convert.ToInt32(t)) > 0)
{
existingIntValue |= Convert.ToInt32(t);
}
}
if (existingIntValue == 0)
{
return null;
}
return (T)(Enum.Parse(typeof(T), existingIntValue.ToString(), true));
}
}
catch (Exception)
{
return null;
}
return null;
}
}
ตัวอย่าง:
[Flags]
public enum PetType
{
None = 0, Dog = 1, Cat = 2, Fish = 4, Bird = 8, Reptile = 16, Other = 32
};
integer values
1=Dog;
13= Dog | Fish | Bird;
96= Other;
128= Null;
คุณควรสร้างความผ่อนคลายในการจับคู่แบบบางประเภทให้มีประสิทธิภาพมากขึ้น
public static T ToEnum<T>(dynamic value)
{
if (value == null)
{
// default value of an enum is the object that corresponds to
// the default value of its underlying type
// https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/default-values-table
value = Activator.CreateInstance(Enum.GetUnderlyingType(typeof(T)));
}
else if (value is string name)
{
return (T)Enum.Parse(typeof(T), name);
}
return (T)Enum.ToObject(typeof(T),
Convert.ChangeType(value, Enum.GetUnderlyingType(typeof(T))));
}
กรณีทดสอบ
[Flags]
public enum A : uint
{
None = 0,
X = 1 < 0,
Y = 1 < 1
}
static void Main(string[] args)
{
var value = EnumHelper.ToEnum<A>(7m);
var x = value.HasFlag(A.X); // true
var y = value.HasFlag(A.Y); // true
var value2 = EnumHelper.ToEnum<A>("X");
var value3 = EnumHelper.ToEnum<A>(null);
Console.ReadKey();
}
วิธีต่างๆในการร่ายไปและกลับจาก Enum
enum orientation : byte
{
north = 1,
south = 2,
east = 3,
west = 4
}
class Program
{
static void Main(string[] args)
{
orientation myDirection = orientation.north;
Console.WriteLine(“myDirection = {0}”, myDirection); //output myDirection =north
Console.WriteLine((byte)myDirection); //output 1
string strDir = Convert.ToString(myDirection);
Console.WriteLine(strDir); //output north
string myString = “north”; //to convert string to Enum
myDirection = (orientation)Enum.Parse(typeof(orientation),myString);
}
}
มันสามารถช่วยให้คุณสามารถแปลงข้อมูลป้อนข้อมูลใด ๆ ให้กับผู้ใช้ที่ต้องการenum สมมติว่าคุณมี enum เช่นนี้ซึ่งเริ่มต้นโดยint โปรดเพิ่มค่าเริ่มต้นที่ enum แรกของคุณ ซึ่งจะใช้ที่ผู้ช่วยเหลือกับเมื่อไม่มีการจับคู่กับค่าอินพุต
public enum FriendType
{
Default,
Audio,
Video,
Image
}
public static class EnumHelper<T>
{
public static T ConvertToEnum(dynamic value)
{
var result = default(T);
var tempType = 0;
//see Note below
if (value != null &&
int.TryParse(value.ToString(), out tempType) &&
Enum.IsDefined(typeof(T), tempType))
{
result = (T)Enum.ToObject(typeof(T), tempType);
}
return result;
}
}
หมายเหตุ: ที่นี่ฉันพยายามที่จะแยกค่าเป็น int เพราะ enum เป็นค่าเริ่มต้นint ถ้าคุณกำหนด enum เช่นนี้ซึ่งเป็นประเภทไบต์
public enum MediaType : byte
{
Default,
Audio,
Video,
Image
}
คุณต้องเปลี่ยนการแจงด้วยวิธีใช้ตัวช่วย
int.TryParse(value.ToString(), out tempType)
ถึง
byte.TryParse(value.ToString(), out tempType)
ฉันตรวจสอบวิธีการของฉันสำหรับอินพุตต่อไปนี้
EnumHelper<FriendType>.ConvertToEnum(null);
EnumHelper<FriendType>.ConvertToEnum("");
EnumHelper<FriendType>.ConvertToEnum("-1");
EnumHelper<FriendType>.ConvertToEnum("6");
EnumHelper<FriendType>.ConvertToEnum("");
EnumHelper<FriendType>.ConvertToEnum("2");
EnumHelper<FriendType>.ConvertToEnum(-1);
EnumHelper<FriendType>.ConvertToEnum(0);
EnumHelper<FriendType>.ConvertToEnum(1);
EnumHelper<FriendType>.ConvertToEnum(9);
ขอโทษสำหรับภาษาอังกฤษของฉัน
นี่เป็นวิธีขยายที่ปลดเปลื้องไปInt32
Enum
มันให้เกียรติธงระดับบิตแม้ว่าค่าสูงกว่าค่าสูงสุดที่เป็นไปได้ ตัวอย่างเช่นถ้าคุณมี enum มีความเป็นไป1 , 2และ4แต่ int เป็น9ก็เข้าใจว่าเป็น1ในกรณีที่ไม่มีของ8 สิ่งนี้ช่วยให้คุณทำการอัปเดตข้อมูลก่อนการอัปเดตรหัส
public static TEnum ToEnum<TEnum>(this int val) where TEnum : struct, IComparable, IFormattable, IConvertible
{
if (!typeof(TEnum).IsEnum)
{
return default(TEnum);
}
if (Enum.IsDefined(typeof(TEnum), val))
{//if a straightforward single value, return that
return (TEnum)Enum.ToObject(typeof(TEnum), val);
}
var candidates = Enum
.GetValues(typeof(TEnum))
.Cast<int>()
.ToList();
var isBitwise = candidates
.Select((n, i) => {
if (i < 2) return n == 0 || n == 1;
return n / 2 == candidates[i - 1];
})
.All(y => y);
var maxPossible = candidates.Sum();
if (
Enum.TryParse(val.ToString(), out TEnum asEnum)
&& (val <= maxPossible || !isBitwise)
){//if it can be parsed as a bitwise enum with multiple flags,
//or is not bitwise, return the result of TryParse
return asEnum;
}
//If the value is higher than all possible combinations,
//remove the high imaginary values not accounted for in the enum
var excess = Enumerable
.Range(0, 32)
.Select(n => (int)Math.Pow(2, n))
.Where(n => n <= val && n > 0 && !candidates.Contains(n))
.Sum();
return Enum.TryParse((val - excess).ToString(), out asEnum) ? asEnum : default(TEnum);
}
วิธีที่ง่ายและชัดเจนสำหรับการคัดเลือก int ถึง enum ใน c #:
public class Program
{
public enum Color : int
{
Blue = 0,
Black = 1,
Green = 2,
Gray = 3,
Yellow =4
}
public static void Main(string[] args)
{
//from string
Console.WriteLine((Color) Enum.Parse(typeof(Color), "Green"));
//from int
Console.WriteLine((Color)2);
//From number you can also
Console.WriteLine((Color)Enum.ToObject(typeof(Color) ,2));
}
}
คุณเพียงใช้การแปลงอย่างชัดเจน Cast int เพื่อ enum หรือ enum เป็น int
class Program
{
static void Main(string[] args)
{
Console.WriteLine((int)Number.three); //Output=3
Console.WriteLine((Number)3);// Outout three
Console.Read();
}
public enum Number
{
Zero = 0,
One = 1,
Two = 2,
three = 3
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace SamplePrograme
{
public class Program
{
public enum Suit : int
{
Spades = 0,
Hearts = 1,
Clubs = 2,
Diamonds = 3
}
public static void Main(string[] args)
{
//from string
Console.WriteLine((Suit) Enum.Parse(typeof(Suit), "Clubs"));
//from int
Console.WriteLine((Suit)1);
//From number you can also
Console.WriteLine((Suit)Enum.ToObject(typeof(Suit) ,1));
}
}
}
คุณทำเหมือนด้านล่าง:
int intToCast = 1;
TargetEnum f = (TargetEnum) intToCast ;
ในการตรวจสอบให้แน่ใจว่าคุณได้โยนค่าที่ถูกต้องเท่านั้นและคุณสามารถยกเว้นเป็นอย่างอื่นได้:
int intToCast = 1;
if (Enum.IsDefined(typeof(TargetEnum), intToCast ))
{
TargetEnum target = (TargetEnum)intToCast ;
}
else
{
// Throw your exception.
}
โปรดทราบว่าการใช้ IsDefined มีค่าใช้จ่ายสูงและเป็นมากกว่าการส่งสัญญาณดังนั้นจึงขึ้นอยู่กับการติดตั้งของคุณเพื่อตัดสินใจใช้หรือไม่
คุณสามารถใช้วิธีการขยาย
public static class Extensions
{
public static T ToEnum<T>(this string data) where T : struct
{
if (!Enum.TryParse(data, true, out T enumVariable))
{
if (Enum.IsDefined(typeof(T), enumVariable))
{
return enumVariable;
}
}
return default;
}
public static T ToEnum<T>(this int data) where T : struct
{
return (T)Enum.ToObject(typeof(T), data);
}
}
ใช้เหมือนรหัสร้อง
Enum:
public enum DaysOfWeeks
{
Monday = 1,
Tuesday = 2,
Wednesday = 3,
Thursday = 4,
Friday = 5,
Saturday = 6,
Sunday = 7,
}
การใช้งาน:
string Monday = "Mon";
int Wednesday = 3;
var Mon = Monday.ToEnum<DaysOfWeeks>();
var Wed = Wednesday.ToEnum<DaysOfWeeks>();
YourEnum
เป็นพลวัตและจะรู้ได้เฉพาะตอนรันไทม์และสิ่งที่ฉันต้องการคือการแปลงเป็นEnum
?