zoukankan      html  css  js  c++  java
  • .net通用类型转换方法

    using System;
    using System.ComponentModel;
    using System.Globalization;
    
    /// <summary>
    /// 类型转换
    /// </summary>
    /// <param name="value">要转换的值</param>
    /// <param name="destinationType">转换的目标类型</param>
    /// <returns></returns>
    public static object To(object value, Type destinationType)
    {
        return To(value, destinationType, CultureInfo.InvariantCulture);
    }
    /// <summary>
    /// 类型转换
    /// </summary>
    /// <param name="value">要转换的值</param>
    /// <param name="destinationType">转换的目标类型</param>
    /// <param name="culture">区域信息</param>
    /// <returns></returns>
    public static object To(object value, Type destinationType, CultureInfo culture)
    {
        if (value != null)
        {
            var sourceType = value.GetType();
    
            var destinationConverter = TypeDescriptor.GetConverter(destinationType);
            if (destinationConverter != null && destinationConverter.CanConvertFrom(value.GetType()))
                return destinationConverter.ConvertFrom(null, culture, value);
    
            var sourceConverter = TypeDescriptor.GetConverter(sourceType);
            if (sourceConverter != null && sourceConverter.CanConvertTo(destinationType))
                return sourceConverter.ConvertTo(null, culture, value, destinationType);
    
            if (destinationType.IsEnum && value is int)
                return Enum.ToObject(destinationType, (int)value);
    
            if (!destinationType.IsInstanceOfType(value))
                return Convert.ChangeType(value, destinationType, culture);
        }
        return value;
    }
    /// <summary>
    /// 类型转换
    /// </summary>
    /// <typeparam name="T">目标类型</typeparam>
    /// <param name="value">要转换的值</param>
    /// <returns></returns>
    public static T To<T>(object value)
    {
        return (T)To(value, typeof(T));
    }
  • 相关阅读:
    ASP.NET WEB API 自定义模型校验过滤器
    使用asp.net mvc部分视图渲染html
    .Net中的并行编程-7.基于BlockingCollection实现高性能异步队列
    python爬虫技术的选择
    优雅的处理异常
    解决asp.net动态压缩
    .Net中的并行编程-6.常用优化策略
    使用快捷键提升C#开发效率
    .Net中的并行编程-5.流水线模型实战
    .Net中的并行编程-4.实现高性能异步队列
  • 原文地址:https://www.cnblogs.com/sjqq/p/7302312.html
Copyright © 2011-2022 走看看