10

我有以下字符串扩展方法能够做到这一点,("true").As<bool>(false) 特别是对于布尔值,它将用于AsBool()进行一些自定义转换。不知何故,我不能从 T 转换为 Bool ,反之亦然。我使用以下代码让它工作,但它似乎有点矫枉过正。

这是关于这一行的:
(T)Convert.ChangeType(AsBool(value, Convert.ToBoolean(fallbackValue)), typeof(T))
我宁愿使用以下内容,但它不会编译:
(T)AsBool(value, (bool)fallbackValue), typeof(T))

我错过了什么还是这是最短的路要走?

    public static T As<T>(this string value)
    {
        return As<T>(value, default(T));
    }
    public static T As<T>(this string value, T fallbackValue)
    {
        if (typeof(T) == typeof(bool))
        {
            return (T)Convert.ChangeType(AsBool(value,
                                                Convert.ToBoolean(fallbackValue)),
                                                typeof(T));
        }
        T result = default(T);
        if (String.IsNullOrEmpty(value))
            return fallbackValue;
        try
        {
            var underlyingType = Nullable.GetUnderlyingType(typeof(T));
            if (underlyingType == null)
                result = (T)Convert.ChangeType(value, typeof(T));
            else if (underlyingType == typeof(bool))
                result = (T)Convert.ChangeType(AsBool(value,
                                                Convert.ToBoolean(fallbackValue)),
                                                typeof(T));
            else
                result = (T)Convert.ChangeType(value, underlyingType);
        }
        finally { }
        return result;
    }
    public static bool AsBool(this string value)
    {
        return AsBool(value, false);
    }
    public static bool AsBool(this string value, bool fallbackValue)
    {
        if (String.IsNullOrEmpty(value))
            return fallbackValue;
        switch (value.ToLower())
        {
            case "1":
            case "t":
            case "true":
                return true;
            case "0":
            case "f":
            case "false":
                return false;
            default:
                return fallbackValue;
        }
    }
4

1 回答 1

14

您可以将其转换为object然后转换为T

if (typeof(T) == typeof(bool))
{
  return (T)(object)AsBool(value, Convert.ToBoolean(fallbackValue));
}
于 2012-08-24T13:59:20.190 回答