123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- // ***********************************************************************
- // Assembly : HZH_Controls
- // Created : 08-08-2019
- //
- // ***********************************************************************
- // <copyright file="Ext.cs">
- // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
- // </copyright>
- //
- // Blog: https://www.cnblogs.com/bfyx
- // GitHub:https://github.com/kwwwvagaa/NetWinformControl
- // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
- //
- // If you use this code, please keep this note.
- // ***********************************************************************
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- namespace HZH_Controls
- {
- /// <summary>
- /// Class Ext.
- /// </summary>
- public static partial class Ext
- {
- /// <summary>
- /// Clones the model.
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="classObject">The class object.</param>
- /// <returns>T.</returns>
- public static T CloneModel<T>(this T classObject) where T : class
- {
- T result;
- if (classObject == null)
- {
- result = default(T);
- }
- else
- {
- object obj = Activator.CreateInstance(typeof(T));
- PropertyInfo[] properties = typeof(T).GetProperties();
- PropertyInfo[] array = properties;
- for (int i = 0; i < array.Length; i++)
- {
- PropertyInfo propertyInfo = array[i];
- if (propertyInfo.CanWrite)
- propertyInfo.SetValue(obj, propertyInfo.GetValue(classObject, null), null);
- }
- result = (obj as T);
- }
- return result;
- }
- /// <summary>
- /// ASCII编码的数组转换为英文字符串
- /// </summary>
- /// <param name="s">字符串</param>
- /// <returns>结果</returns>
- public static string ToEnString(this byte[] s)
- {
- return ToEncodeString(s, Encoding.ASCII).Trim('\0').Trim();
- }
- /// <summary>
- /// 数组按指定编码转换为字符串
- /// </summary>
- /// <param name="dealBytes">数组</param>
- /// <param name="encode">编码</param>
- /// <returns>结果</returns>
- public static string ToEncodeString(this byte[] dealBytes, Encoding encode)
- {
- return encode.GetString(dealBytes);
- }
- #region 转换为base64字符串
- /// <summary>
- /// 功能描述:转换为base64字符串
- /// 作 者:HZH
- /// 创建日期:2019-03-29 10:12:38
- /// 任务编号:POS
- /// </summary>
- /// <param name="data">data</param>
- /// <returns>返回值</returns>
- public static string ToBase64Str(this string data)
- {
- if (data.IsEmpty())
- return string.Empty;
- byte[] buffer = Encoding.Default.GetBytes(data);
- return Convert.ToBase64String(buffer);
- }
- #endregion
- /// <summary>
- /// 转换为坐标
- /// </summary>
- /// <param name="data">The data.</param>
- /// <returns>System.Drawing.Point.</returns>
- public static System.Drawing.Point ToPoint(this string data)
- {
- if (!System.Text.RegularExpressions.Regex.IsMatch(data, @"^\s*\d+(\.\d+)?\s*\,\s*\d+(\.\d+)?\s*$"))
- {
- return System.Drawing.Point.Empty;
- }
- else
- {
- string[] strs = data.Split(',');
- return new System.Drawing.Point(strs[0].ToInt(), strs[1].ToInt());
- }
- }
- #region 数值转换
- /// <summary>
- /// 转换为整型
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Int32.</returns>
- public static int ToInt(this object data)
- {
- if (data == null)
- return 0;
- if (data is bool)
- {
- return (bool)data ? 1 : 0;
- }
- int result;
- var success = int.TryParse(data.ToString(), out result);
- if (success)
- return result;
- try
- {
- return Convert.ToInt32(ToDouble(data, 0));
- }
- catch (Exception)
- {
- return 0;
- }
- }
- /// <summary>
- /// 转换为可空整型
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Nullable<System.Int32>.</returns>
- public static int? ToIntOrNull(this object data)
- {
- if (data == null)
- return null;
- int result;
- bool isValid = int.TryParse(data.ToString(), out result);
- if (isValid)
- return result;
- return null;
- }
- /// <summary>
- /// 转换为双精度浮点数
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Double.</returns>
- public static double ToDouble(this object data)
- {
- if (data == null)
- return 0;
- double result;
- return double.TryParse(data.ToString(), out result) ? result : 0;
- }
- /// <summary>
- /// 转换为双精度浮点数,并按指定的小数位4舍5入
- /// </summary>
- /// <param name="data">数据</param>
- /// <param name="digits">小数位数</param>
- /// <returns>System.Double.</returns>
- public static double ToDouble(this object data, int digits)
- {
- return Math.Round(ToDouble(data), digits, System.MidpointRounding.AwayFromZero);
- }
- /// <summary>
- /// 转换为可空双精度浮点数
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Nullable<System.Double>.</returns>
- public static double? ToDoubleOrNull(this object data)
- {
- if (data == null)
- return null;
- double result;
- bool isValid = double.TryParse(data.ToString(), out result);
- if (isValid)
- return result;
- return null;
- }
- /// <summary>
- /// 转换为高精度浮点数
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Decimal.</returns>
- public static decimal ToDecimal(this object data)
- {
- if (data == null)
- return 0;
- decimal result;
- return decimal.TryParse(data.ToString(), out result) ? result : 0;
- }
- /// <summary>
- /// 转换为高精度浮点数,并按指定的小数位4舍5入
- /// </summary>
- /// <param name="data">数据</param>
- /// <param name="digits">小数位数</param>
- /// <returns>System.Decimal.</returns>
- public static decimal ToDecimal(this object data, int digits)
- {
- return Math.Round(ToDecimal(data), digits, System.MidpointRounding.AwayFromZero);
- }
- /// <summary>
- /// 转换为可空高精度浮点数
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Nullable<System.Decimal>.</returns>
- public static decimal? ToDecimalOrNull(this object data)
- {
- if (data == null)
- return null;
- decimal result;
- bool isValid = decimal.TryParse(data.ToString(), out result);
- if (isValid)
- return result;
- return null;
- }
- /// <summary>
- /// 转换为可空高精度浮点数,并按指定的小数位4舍5入
- /// </summary>
- /// <param name="data">数据</param>
- /// <param name="digits">小数位数</param>
- /// <returns>System.Nullable<System.Decimal>.</returns>
- public static decimal? ToDecimalOrNull(this object data, int digits)
- {
- var result = ToDecimalOrNull(data);
- if (result == null)
- return null;
- return Math.Round(result.Value, digits, System.MidpointRounding.AwayFromZero);
- }
- #endregion
- #region 日期转换
- /// <summary>
- /// 转换为日期
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>DateTime.</returns>
- public static DateTime ToDate(this object data)
- {
- try
- {
- if (data == null)
- return DateTime.MinValue;
- if (System.Text.RegularExpressions.Regex.IsMatch(data.ToStringExt(), @"^\d{8}$"))
- {
- string strValue = data.ToStringExt();
- return new DateTime(strValue.Substring(0, 4).ToInt(), strValue.Substring(4, 2).ToInt(), strValue.Substring(6, 2).ToInt());
- }
- DateTime result;
- return DateTime.TryParse(data.ToString(), out result) ? result : DateTime.MinValue;
- }
- catch
- {
- return DateTime.MinValue;
- }
- }
- /// <summary>
- /// 转换为可空日期
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.Nullable<DateTime>.</returns>
- public static DateTime? ToDateOrNull(this object data)
- {
- try
- {
- if (data == null)
- return null;
- if (System.Text.RegularExpressions.Regex.IsMatch(data.ToStringExt(), @"^\d{8}$"))
- {
- string strValue = data.ToStringExt();
- return new DateTime(strValue.Substring(0, 4).ToInt(), strValue.Substring(4, 2).ToInt(), strValue.Substring(6, 2).ToInt());
- }
- DateTime result;
- bool isValid = DateTime.TryParse(data.ToString(), out result);
- if (isValid)
- return result;
- return null;
- }
- catch
- {
- return null;
- }
- }
- #endregion
- #region 布尔转换
- /// <summary>
- /// 转换为布尔值
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
- public static bool ToBool(this object data)
- {
- if (data == null)
- return false;
- bool? value = GetBool(data);
- if (value != null)
- return value.Value;
- bool result;
- return bool.TryParse(data.ToString(), out result) && result;
- }
- /// <summary>
- /// 获取布尔值
- /// </summary>
- /// <param name="data">The data.</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
- private static bool? GetBool(this object data)
- {
- switch (data.ToString().Trim().ToLower())
- {
- case "0":
- return false;
- case "1":
- return true;
- case "是":
- return true;
- case "否":
- return false;
- case "yes":
- return true;
- case "no":
- return false;
- default:
- return null;
- }
- }
- /// <summary>
- /// 转换为可空布尔值
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
- public static bool? ToBoolOrNull(this object data)
- {
- if (data == null)
- return null;
- bool? value = GetBool(data);
- if (value != null)
- return value.Value;
- bool result;
- bool isValid = bool.TryParse(data.ToString(), out result);
- if (isValid)
- return result;
- return null;
- }
- #endregion
- #region 字符串转换
- /// <summary>
- /// 字符串转换为byte[]
- /// </summary>
- /// <param name="data">The data.</param>
- /// <returns>System.Byte[].</returns>
- public static byte[] ToBytes(this string data)
- {
- return System.Text.Encoding.GetEncoding("GBK").GetBytes(data);
- }
- /// <summary>
- /// Converts to bytesdefault.
- /// </summary>
- /// <param name="data">The data.</param>
- /// <returns>System.Byte[].</returns>
- public static byte[] ToBytesDefault(this string data)
- {
- return System.Text.Encoding.Default.GetBytes(data);
- }
- /// <summary>
- /// 转换为字符串
- /// </summary>
- /// <param name="data">数据</param>
- /// <returns>System.String.</returns>
- public static string ToStringExt(this object data)
- {
- return data == null ? string.Empty : data.ToString();
- }
- #endregion
- /// <summary>
- /// 安全返回值
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="value">可空值</param>
- /// <returns>T.</returns>
- public static T SafeValue<T>(this T? value) where T : struct
- {
- return value ?? default(T);
- }
- /// <summary>
- /// 是否为空
- /// </summary>
- /// <param name="value">值</param>
- /// <returns><c>true</c> if the specified value is empty; otherwise, <c>false</c>.</returns>
- public static bool IsEmpty(this string value)
- {
- return string.IsNullOrWhiteSpace(value);
- }
- /// <summary>
- /// 是否为空
- /// </summary>
- /// <param name="value">值</param>
- /// <returns><c>true</c> if the specified value is empty; otherwise, <c>false</c>.</returns>
- public static bool IsEmpty(this Guid? value)
- {
- if (value == null)
- return true;
- return IsEmpty(value.Value);
- }
- /// <summary>
- /// 是否为空
- /// </summary>
- /// <param name="value">值</param>
- /// <returns><c>true</c> if the specified value is empty; otherwise, <c>false</c>.</returns>
- public static bool IsEmpty(this Guid value)
- {
- if (value == Guid.Empty)
- return true;
- return false;
- }
- /// <summary>
- /// 是否为空
- /// </summary>
- /// <param name="value">值</param>
- /// <returns><c>true</c> if the specified value is empty; otherwise, <c>false</c>.</returns>
- public static bool IsEmpty(this object value)
- {
- if (value != null && !string.IsNullOrEmpty(value.ToString()))
- {
- return false;
- }
- else
- {
- return true;
- }
- }
- #region 是否数字
- /// <summary>
- /// 功能描述:是否数字
- /// 作 者:HZH
- /// 创建日期:2019-03-06 09:03:05
- /// 任务编号:POS
- /// </summary>
- /// <param name="value">value</param>
- /// <returns>返回值</returns>
- public static bool IsNum(this string value)
- {
- return System.Text.RegularExpressions.Regex.IsMatch(value, @"^\d+(\.\d*)?$");
- }
- #endregion
- }
- }
|