C# Utility Class--Generic Methods for Type Conversion
C# Tool Class--Generic Method for Type Conversion
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace LinqPractice { class Utility { public static T ConvertDataRow<T>(DataRow dr, string columnName,T defaultValue) { if (dr.Table.Columns.Contains(columnName)) { return ConvertType<T>(dr[columnName],defaultValue); } return default(T); } /// <summary> /// 泛型数据类型转换 /// </summary> /// <typeparam name="T">自定义数据类型</typeparam> /// <param name="value">传入需要转换的值</param> /// <param name="defaultValue">默认值</param> /// <returns></returns> public static T ConvertType<T>(object value,T defaultValue) { try { return (T)ConvertToT<T>(value,defaultValue); } catch { return default(T); } } /// <summary> /// 转换数据类型 /// </summary> /// <typeparam name="T">自定义数据类型</typeparam> /// <param name="myvalue">传入需要转换的值</param> /// <param name="defaultValue">默认值</param> /// <returns></returns> private static object ConvertToT<T>(object myvalue,T defaultValue) { TypeCode typeCode = System.Type.GetTypeCode(typeof(T)); if (myvalue != null) { string value = Convert.ToString(myvalue); switch (typeCode) { case TypeCode.Boolean: bool flag = false; if (bool.TryParse(value, out flag)) { return flag; } break; case TypeCode.Char: char c; if (Char.TryParse(value, out c)) { return c; } break; case TypeCode.SByte: sbyte s = 0; if (SByte.TryParse(value, out s)) { return s; } break; case TypeCode.Byte: byte b = 0; if (Byte.TryParse(value, out b)) { return b; } break; case TypeCode.Int16: Int16 i16 = 0; if (Int16.TryParse(value, out i16)) { return i16; } break; case TypeCode.UInt16: UInt16 ui16 = 0; if (UInt16.TryParse(value, out ui16)) return ui16; break; case TypeCode.Int32: int i = 0; if (Int32.TryParse(value, out i)) { return i; } break; case TypeCode.UInt32: UInt32 ui32 = 0; if (UInt32.TryParse(value, out ui32)) { return ui32; } break; case TypeCode.Int64: Int64 i64 = 0; if (Int64.TryParse(value, out i64)) { return i64; } break; case TypeCode.UInt64: UInt64 ui64 = 0; if (UInt64.TryParse(value, out ui64)) return ui64; break; case TypeCode.Single: Single single = 0; if (Single.TryParse(value, out single)) { return single; } break; case TypeCode.Double: double d = 0; if (Double.TryParse(value, out d)) { return d; } break; case TypeCode.Decimal: decimal de = 0; if (Decimal.TryParse(value, out de)) { return de; } break; case TypeCode.DateTime: DateTime dt; if (DateTime.TryParse(value, out dt)) { return dt; } break; case TypeCode.String: if (!string.IsNullOrEmpty(value)) { return value.ToString(); } break; } } return defaultValue; } } }
The above is the content of C# Tool Class--Generic Method for Type Conversion. For more related content, please pay attention to the PHP Chinese website (www.php .cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Active Directory with C#. Here we discuss the introduction and how Active Directory works in C# along with the syntax and example.

Guide to C# Serialization. Here we discuss the introduction, steps of C# serialization object, working, and example respectively.

Guide to Random Number Generator in C#. Here we discuss how Random Number Generator work, concept of pseudo-random and secure numbers.

Guide to C# Data Grid View. Here we discuss the examples of how a data grid view can be loaded and exported from the SQL database or an excel file.

Guide to Patterns in C#. Here we discuss the introduction and top 3 types of Patterns in C# along with its examples and code implementation.

Guide to Prime Numbers in C#. Here we discuss the introduction and examples of prime numbers in c# along with code implementation.

Guide to Factorial in C#. Here we discuss the introduction to factorial in c# along with different examples and code implementation.

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.
