public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 }
このソリューションでは、次のような列挙の文字列値を取得できます。より良い解決策は、タイプセーフエナムパターン:
public class StringValue : System.Attribute { private readonly string _value; public StringValue(string value) { _value = value; } public string Value { get { return _value; } } }明示的な(または暗黙的な)タイプ変換の場合、マッピングで静的フィールドを追加し、インスタンスコンストラクターのマッピングを入力し、ユーザーを追加します。定義されたタイプ変換演算子:< pre> private static readonly dictionary< string、authenticationmethod> instance = new Dictionary< string、authenticationmethod>();
public enum AuthenticationMethod { [StringValue("FORMS")] FORMS = 1, [StringValue("WINDOWS")] WINDOWSAUTHENTICATION = 2, [StringValue("SSO")] SINGLESIGNON = 3 }instance [name] = this;
public static explicit operator exhinticationmethod(string str)
{public static class StringEnum { public static string GetStringValue(Enum value) { string output = null; Type type = value.GetType(); // Look for our 'StringValueAttribute' in the field's custom attributes FieldInfo fi = type.GetField(value.ToString()); StringValue[] attrs = fi.GetCustomAttributes(typeof(StringValue), false) as StringValue[]; if (attrs.Length > 0) { output = attrs[0].Value; } return output; } }>}< /pre>
string valueOfAuthenticationMethod = StringEnum.GetStringValue(AuthenticationMethod.FORMS);
以上がc#で列挙値の文字列表現を取得する方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。