這篇文章主要介紹了C#中enum和string的相互轉換的相關資料,需要的朋友可以參考下
C# Json轉換操作
枚舉類型
Enum為枚舉提供基類,其基礎類型可以是除
Char 外的任何整型,如果沒有顯式聲明基礎類型,則使用Int32。
注意:枚舉類型的基底類型是除
Char 外的任何整型,所以枚舉類型的值是整型值
1、C#將枚舉轉為字串(enume->string)
我們的對象中包含枚舉類型,在序列化成Json字串的時候,顯示的是枚舉類型對應的數字。因為這是枚舉的
本質所在,但是很多時候需要在JSON轉化的時候做一些操作,使之顯示字串,因為使用者需要字串。
方法就是:在枚舉類型上添加屬性標籤
[JsonConverter(typeof(StringEnumConverter))]
舉例如下:
1)、在定義枚舉類型時在類型上聲明一個屬性即可
在MODEL project上引用Json.net
DLL
然後加上Attribute [JsonConverter(typeof(StringEnumConverter))]
eg:
public enumRecipientStatus{Sent,Delivered,Signed,Declined}public classRecipientsInfoDepartResult{[JsonConverter(typeof(StringEnumConverter))]//屬性將枚舉轉換為stringpublic RecipientStatus status {set; get; }public PositionBeanResult PredefineSign {set; get; }}
2)、利用Enum的靜態方法GetName與GetNames
eg : public staticstring 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))將返回枚舉字串數組
3)、RecipientStatus ty = RecipientStatus.Delivered;
ty.ToString();
2、字串轉枚舉(string->enum)
1)、利用Enum的靜態方法Parse: Enum.Parse()
原型:
public static Object Parse(Type enumType,string value)eg : (Colors)Enum.Parse(typeof(Colors), "Red");(T)Enum.Parse(typeof(T),strType)
一個模板函數支援任何枚舉類型
protected staticT GetType<T>(string strType){T t = (T)Enum.Parse(typeof(T),strType);return t;}
判斷某個枚舉變數是否在定義中:
RecipientStatus type = RecipientStatus.Sent;Enum.IsDefined(typeof(RecipientStatus),type );
總結