码迷,mamicode.com
首页 > Windows程序 > 详细

C# TypeDescriptor获取类型转换器,实现泛型转换

时间:2020-01-11 09:24:22      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:方法   ring   rip   input   需求   log   put   def   没有   

原文:C# TypeDescriptor获取类型转换器,实现泛型转换

需求背景

平时的coding过程中,经常性遇到string类型转换成其他的基本类型,如 int double bool等,那我们正常的方式就是下面的方式进行类型转换

int.Parse("111");
bool.Parse("true");

那我们有没有其他方式统一这个转换方式呢?

TypeDescriptor实现统一转换

下面我就写了一个string的扩展方法

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Common.Extensions
{
    public static class StringExtension
    {
        public static T Convert<T>(this string input)
        {
            try
            {
                var converter = TypeDescriptor.GetConverter(typeof(T));
                if (converter != null)
                {
                    return (T)converter.ConvertFromString(input);
                }
                return default(T);
            }
            catch (Exception)
            {
                return default(T);
            }
        }

        public static object Convert(this string input, Type type)
        {
            try
            {
                var converter = TypeDescriptor.GetConverter(type);
                if (converter != null)
                {
                    return converter.ConvertFromString(input);
                }
                return null;
            }
            catch (Exception)
            {
                return null;
            }
        }

    }
}

实现这个方法后,使用其他就会很方便

"111".Convert<double>();
"True".Convert<bool>();

C# TypeDescriptor获取类型转换器,实现泛型转换

标签:方法   ring   rip   input   需求   log   put   def   没有   

原文地址:https://www.cnblogs.com/lonelyxmas/p/12178887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!