热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C#与ASP.NET中实用的类型解析扩展方法库

在C#和ASP.NET开发中,TypeParse是一个非常实用的类型解析扩展方法库,提供了简便的类型转换功能。例如,通过`varint1="12".TryToInt();`可以将字符串安全地转换为整数,如果转换失败则返回0。此外,还支持更多复杂的类型转换场景,如`varint2="22x".TryToInt();`和`varint3="3.14".TryToInt();`,确保了代码的健壮性和易用性。

用法:

var int1 = "2".TryToInt();//转换为int失败返回0
var int2 = "2x".TryToInt();
var int3 = "2".TryToInt(1);//转换为int失败返回1
var int4 = "2x".TryToInt(1);
 
 
var d1 = "2".TryToMoney(); //同上
var d2 = "2x".TryToMoney();
var d3 = "2".TryToMoney(1);
var d4 = "2x".TryToMoney(1);
 
string a = null;
var s1 = a.TryToString();
var s3 = a.TryToString("1");
 
 
var d11 = "2".TryToDecimal();
var d22 = "2x".TryToDecimal();
var d33 = "2".TryToDecimal(1);
var d44 = "2x".TryToDecimal(1);
 
 
var de1 = "2013-1-1".TryToDate();
var de2 = "x2013-1-1".TryToDate();
var de3 = "x2013-1-1".TryToDate(DateTime.Now);
 
 
//json和model转换
var json = new { id = 1 }.ModelToJson();
var model = "{id:1}".JsonToModel();
 
 
//list和dataTable转换
var dt = new List().ListToDataTable();
var list = dt.DataTableToList();

代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Script.Serialization;
using System.Data;
using System.Reflection;
using System.Collections;
 
namespace SyntacticSugar
{
  /// 
  /// ** 描述:类型转换
  /// ** 创始时间:2015-6-2
  /// ** 修改时间:-
  /// ** 作者:sunkaixuan
  /// ** 使用说明:
  /// 
  public static class TypeParseExtenions
  {
    #region 强转成int 如果失败返回 0
    /// 
    /// 强转成int 如果失败返回 0
    /// 
    /// 
    /// 
    /// 
    public static int TryToInt(this object thisValue)
    {
      int reval = 0;
      if (thisValue != null && int.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return reval;
    }
    #endregion
    #region 强转成int 如果失败返回 errorValue
    /// 
    /// 强转成int 如果失败返回 errorValue
    /// 
    /// 
    /// 
    /// 
    public static int TryToInt(this object thisValue, int errorValue)
    {
      int reval = 0;
      if (thisValue != null && int.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return errorValue;
    }
    #endregion
    #region 强转成double 如果失败返回 0
    /// 
    /// 强转成money 如果失败返回 0
    /// 
    /// 
    /// 
    /// 
    public static double TryToMoney(this object thisValue)
    {
      double reval = 0;
      if (thisValue != null && double.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return 0;
    }
    #endregion
    #region 强转成double 如果失败返回 errorValue
    /// 
    /// 强转成double 如果失败返回 errorValue
    /// 
    /// 
    /// 
    /// 
    public static double TryToMoney(this object thisValue, int errorValue)
    {
      double reval = 0;
      if (thisValue != null && double.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return errorValue;
    }
    #endregion
    #region 强转成string 如果失败返回 ""
    /// 
    /// 强转成string 如果失败返回 ""
    /// 
    /// 
    /// 
    /// 
    public static string TryToString(this object thisValue)
    {
      if (thisValue != null) return thisValue.ToString().Trim();
      return "";
    }
    #endregion
    #region 强转成string 如果失败返回 errorValue
    /// 
    /// 强转成string 如果失败返回 str
    /// 
    /// 
    /// 
    /// 
    public static string TryToString(this object thisValue, string errorValue)
    {
      if (thisValue != null) return thisValue.ToString().Trim();
      return errorValue;
    }
    #endregion
    #region 强转成Decimal 如果失败返回 0
    /// 
    /// 强转成Decimal 如果失败返回 0
    /// 
    /// 
    /// 
    /// 
    public static Decimal TryToDecimal(this object thisValue)
    {
      Decimal reval = 0;
      if (thisValue != null && decimal.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return 0;
    }
    #endregion
    #region 强转成Decimal 如果失败返回 errorValue
    /// 
    /// 强转成Decimal 如果失败返回 errorValue
    /// 
    /// 
    /// 
    /// 
    public static Decimal TryToDecimal(this object thisValue, int errorValue)
    {
      Decimal reval = 0;
      if (thisValue != null && decimal.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return errorValue;
    }
    #endregion
    #region 强转成DateTime 如果失败返回 DateTime.MinValue
    /// 
    /// 强转成DateTime 如果失败返回 DateTime.MinValue
    /// 
    /// 
    /// 
    /// 
    public static DateTime TryToDate(this object thisValue)
    {
      DateTime reval = DateTime.MinValue;
      if (thisValue != null && DateTime.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return reval;
    }
    #endregion
    #region 强转成DateTime 如果失败返回 errorValue
    /// 
    /// 强转成DateTime 如果失败返回 errorValue
    /// 
    /// 
    /// 
    /// 
    public static DateTime TryToDate(this object thisValue, DateTime errorValue)
    {
      DateTime reval = DateTime.MinValue;
      if (thisValue != null && DateTime.TryParse(thisValue.ToString(), out reval))
      {
        return reval;
      }
      return errorValue;
    }
    #endregion
 
    #region json转换
    /// 
    /// 将json序列化为实体
    /// 
    /// 
    /// 
    /// 
    public static TEntity JsonToModel(this string json)
    {
      JavascriptSerializer jsSerializer = new JavascriptSerializer();
      return jsSerializer.Deserialize(json);
    }
    /// 
    /// 将实体序列化为json
    /// 
    /// 
    /// 
    public static string ModelToJson(this T model)
    {
      JavascriptSerializer jsSerializer = new JavascriptSerializer();
      return jsSerializer.Serialize(model);
    }
 
    #endregion
 
    #region DataTable List
    /// 
    /// 将集合类转换成DataTable
    /// 
    /// 集合
    /// 
    public static DataTable ListToDataTable(this List list)
    {
      DataTable result = new DataTable();
      if (list.Count > 0)
      {
        PropertyInfo[] propertys = typeof(T).GetProperties();
        foreach (PropertyInfo pi in propertys)
        {
          result.Columns.Add(pi.Name, pi.PropertyType);
        }
 
        for (int i = 0; i 
    /// 将datatable转为list
    /// 
    /// 
    /// 
    /// 
    public static List DataTableToList(this DataTable dt)
    {
      var list = new List();
      Type t = typeof(T);
      var plist = new List(typeof(T).GetProperties());
 
      foreach (DataRow item in dt.Rows)
      {
        T s = System.Activator.CreateInstance();
        for (int i = 0; i  p.Name == dt.Columns[i].ColumnName);
          if (info != null)
          {
            if (!Convert.IsDBNull(item[i]))
            {
              info.SetValue(s, item[i], null);
            }
          }
        }
        list.Add(s);
      }
      return list;
    }
    #endregion
 
  }
}


推荐阅读
  • Java 8 引入了 Stream API,这一新特性极大地增强了集合数据的处理能力。通过 Stream API,开发者可以更加高效、简洁地进行集合数据的遍历、过滤和转换操作。本文将详细解析 Stream API 的核心概念和常见用法,帮助读者更好地理解和应用这一强大的工具。 ... [详细]
  • 探讨 `org.openide.windows.TopComponent.componentOpened()` 方法的应用及其代码实例分析 ... [详细]
  • MVVM架构~mvc,mvp,mvvm大话开篇
    返回目录百度百科的定义:MVP是从经典的模式MVC演变而来,它们的基本思想有相通的地方:ControllerPresenter负责逻辑的处理,Model提供数据,View负责显示。作为一种新的模 ... [详细]
  • 探索JavaScript倒计时功能的三种高效实现方法及代码示例 ... [详细]
  • Java 9 中 SafeVarargs 注释的使用与示例解析 ... [详细]
  • JVM参数设置与命令行工具详解
    JVM参数配置与命令行工具的深入解析旨在优化系统性能,通过合理设置JVM参数,确保在高吞吐量的前提下,有效减少垃圾回收(GC)的频率,进而降低系统停顿时间,提升服务的稳定性和响应速度。此外,本文还将详细介绍常用的JVM命令行工具,帮助开发者更好地监控和调优JVM运行状态。 ... [详细]
  • MongoDB Aggregates.group() 方法详解与编程实例 ... [详细]
  • 修复一个 Bug 竟耗时两天?真的有那么复杂吗?
    修复一个 Bug 竟然耗费了两天时间?这背后究竟隐藏着怎样的复杂性?本文将深入探讨这个看似简单的 Bug 为何会如此棘手,从代码层面剖析问题根源,并分享解决过程中遇到的技术挑战和心得。 ... [详细]
  • 深入解析零拷贝技术(Zerocopy)及其应用优势
    零拷贝技术(Zero-copy)是Netty框架中的一个关键特性,其核心在于减少数据在操作系统内核与用户空间之间的传输次数。通过避免不必要的内存复制操作,零拷贝显著提高了数据传输的效率和性能。本文将深入探讨零拷贝的工作原理及其在实际应用中的优势,包括降低CPU负载、减少内存带宽消耗以及提高系统吞吐量等方面。 ... [详细]
  • 今日精选:10款实用的jQuery随机效果插件
    在今天的精选内容中,我们推荐了10款实用的jQuery随机效果插件。这些插件不仅功能强大,而且设计精良,能够为您的网页增添独特的互动体验。从动态图像效果到文本动画,每款插件都提供了丰富的自定义选项,帮助开发者轻松实现创意视觉效果。特别值得一提的是,其中一款插件集成了与Google API的无缝对接,使数据展示更加生动和直观。 ... [详细]
  • 深入解析 Spring MVC 的核心原理与应用实践
    本文将详细探讨Spring MVC的核心原理及其实际应用,首先从配置web.xml文件入手,解析其在初始化过程中的关键作用,接着深入分析请求处理流程,包括控制器、视图解析器等组件的工作机制,并结合具体案例,展示如何高效利用Spring MVC进行开发,为读者提供全面的技术指导。 ... [详细]
  • 根据不同环境需求,利用 Vue CLI 的 `npm run build` 命令对项目进行定制化打包,如测试、预发布和生产环境。通过配置 `process.env` 变量,实现不同环境下接口和服务的动态切换,确保应用在各阶段都能高效运行和调试。 ... [详细]
  • Windows环境下详细教程:如何搭建Git服务
    Windows环境下详细教程:如何搭建Git服务 ... [详细]
  • 在进行前端JavaScript国际化(i18n)的过程中,为了从cookie中获取语言信息并动态加载相应资源,我决定将语言检测逻辑和i18n初始化代码直接嵌入到index页面中,使用了Velocity模板引擎的语法。这种方法不仅简化了代码结构,还提高了语言切换的灵活性和响应速度。 ... [详细]
  • 本文初步探讨了PHP中基于JWT(JSON Web Token)的身份验证机制。具体流程包括:1. 客户端通过用户名和密码发起登录请求;2. 服务器接收并验证用户凭证的合法性,若验证通过,则生成并返回一个JWT令牌;3. 客户端接收该令牌,并在后续请求中携带此令牌以完成身份验证。这一机制不仅提高了安全性,还简化了会话管理。 ... [详细]
author-avatar
mobiledu2502872123
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有