以与Enum相同的方式将字符串值存储为常量

时间:2009-06-05 23:48:58

标签: c# .net .net-2.0 enums constants

我知道有一种方法可以让enum适用于转换丰富的字符串类型 - 代码看起来不漂亮。

有没有人知道有这样的事情:

    public SOMESTRUCTURE SessionKeys : string
{
    value1 = "value1key",
    value2 = "value2key",
    name = "name"
}

所以稍后在我的代码中我可以将其称为:

SessionKeys.value1

4 个答案:

答案 0 :(得分:9)

这是我提出的最好的。 (我没有编译它,所以语法可能会关闭。)

public static class SessionKeys
{
    public const string Value1 = "Value1";
    public const string Value2 = "Value2";
    ...
}

答案 1 :(得分:3)

使用C#2.0 - 我认为最好的选择是使用一个静态类,其值为常量,如John Fisher所示。

如果您可以使用C#3.0,则可以使用标准枚举和简单的扩展方法以较少令人反感的方式处理转换。

答案 2 :(得分:3)

请在此处查看我的回答:
Getting static field values of a type using reflection

这和John Fisher的答案之间的区别在于你可以将SessionKeys作为函数参数传递,并获得你想要的类似enum的语义。

上一个问题要求VB.Net,但C#端口应该不那么难。事实上,这里(未经测试):

public interface ICustomEnum<T>
{
    ICustomEnum<T> FromT(T value);
    T Value { get; }

    // Implement using a sealed class with a private constructor 
    // that accepts and sets the Value property, 
    // one shared readonly property for each desired value in the enum,
    // and implicit conversions to and from T.
    // Then see this link to get intellisense support
    // that exactly matches a normal enum:
    // https://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102217#102217
    // Note that the completion list only works for VB.
}

/// <completionlist cref="SessionKeys"/>
public sealed SessionKeys: ICustomEnum<string>
{
    private string _value;
    public string Value { get { return _value; } } 

    private SessionKeys(string value)
    {
        _value = value;
    }

    private static SessionKeys _value1 = new MyStringEnum("value1key");
    public static SessionKeys value1 { get { return _value1;} } 

    private static MyStringEnum _value2 = new MyStringEnum("value2key");
    public static MyStringEnum value2 { get { return _value2;} } 

    public static ICustomEnum<string> FromString(string value) 
    {
        // use reflection or a dictionary here if you have a lot of values
        switch( value )
        {
            case "value1key":
                return value1;
            case "value2key":
                return value2;
            default:
                return null; //or throw an exception
        }
    }

    public ICustomEnum<string> FromT(string value) 
    {
        return FromString(value);
    }

    public static implicit operator string(SessionKeys item)
    {
        return item.Value;
    }

    public static implicit operator SessionKeys(string value)
    {
        return FromString(value);
    }
}

答案 3 :(得分:1)

问题是枚举不仅仅是一个带有一堆公共数值常量的静态类。枚举是一种类型。使用常量会丢失类型安全性。如果使类的静态成员与类类型相同,则可以实现类型安全。

public sealed class SessionKey
{
    private _value; 
    private SessionKey( string value )
    {
        _value = value;
    }

    public string Value { get return _value; }

    public static readonly SessionKey Value1 = new SessionKey( "Value1" );
    public static readonly SessionKey Value2 = new SessionKey( "Value2" );
}

public class Something
{
    /* stuff */
    public void Foo( SessionKey sessionKey )
    {
        switch( sessionKey.Value )
        {
            case SessionKey.Value1.Value:
                DoBaz();
                break;
            case SessionKey.Value2.Value:
                DoBop();
                break;
            default:
                DoBar();
        }
    }   

    /* other stuff */
}