您好,登錄后才能下訂單哦!
這篇文章給大家介紹C#中怎么將enum和string進(jìn)行轉(zhuǎn)換,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
C# Json轉(zhuǎn)換操作
枚舉類型
Enum為枚舉提供基類,其基礎(chǔ)類型可以是除
Char 外的任何整型,如果沒有顯式聲明基礎(chǔ)類型,則使用Int32。
注意:枚舉類型的基類型是除
Char 外的任何整型,所以枚舉類型的值是整型值
1、C#將枚舉轉(zhuǎn)為字符串(enume->string)
我們的對象中包含枚舉類型,在序列化成Json字符串的時候,顯示的是枚舉類型對應(yīng)的數(shù)字。因為這是枚舉的
本質(zhì)所在,但是很多時候需要在JSON轉(zhuǎn)化的時候做一些操作,使之顯示字符串,因為用戶需要字符串。
方法就是:在枚舉類型上添加屬性標(biāo)簽
[JsonConverter(typeof(StringEnumConverter))]
舉例如下:
1)、在定義枚舉類型時在類型上聲明一個屬性即可
在MODEL project上引用Json.net
DLL
然后加上Attribute [JsonConverter(typeof(StringEnumConverter))]
eg:
public enum RecipientStatus { Sent, Delivered, Signed, Declined } public class RecipientsInfoDepartResult { [JsonConverter(typeof(StringEnumConverter))] //屬性將枚舉轉(zhuǎn)換為string public RecipientStatus status { set; get; } public PositionBeanResult PredefineSign { set; get; } }
2)、利用Enum的靜態(tài)方法GetName與GetNames
eg : public static string GetName(Type enumType,Object value) public static string[] GetNames(Type enumType)
例如:
Enum.GetName(typeof(Colors),3))與Enum.GetName(typeof(Colors), Colors.Blue))的值都是"Blue" Enum.GetNames(typeof(Colors))將返回枚舉字符串?dāng)?shù)組
3)、RecipientStatus ty = RecipientStatus.Delivered;
ty.ToString();
2、字符串轉(zhuǎn)枚舉(string->enum)
1)、利用Enum的靜態(tài)方法Parse: Enum.Parse()
原型:
public static Object Parse(Type enumType,string value) eg : (Colors)Enum.Parse(typeof(Colors), "Red"); (T)Enum.Parse(typeof(T), strType)
一個模板函數(shù)支持任何枚舉類型
protected static T GetType<T>(string strType) { T t = (T)Enum.Parse(typeof(T), strType); return t; }
判斷某個枚舉變量是否在定義中:
RecipientStatus type = RecipientStatus.Sent; Enum.IsDefined(typeof(RecipientStatus), type );
關(guān)于C#中怎么將enum和string進(jìn)行轉(zhuǎn)換就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。