最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

asp.net 數(shù)據(jù)類型轉(zhuǎn)換類代碼

 更新時間:2012年06月07日 00:47:45   作者:  
asp.net 數(shù)據(jù)類型轉(zhuǎn)換類代碼,需要的朋友可以參考下
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace TypeClass
{
public class TypeParse
{
/// <summary>
/// 判斷對象是否為Int32類型的數(shù)字
/// </summary>
/// <param name="Expression"></param>
/// <returns></returns>
public static bool IsNumeric(object Expression)
{
if (Expression != null)
{
int intVal;
return int.TryParse(Expression.ToString(), out intVal);
}
return false;
}
public static bool IsDouble(object Expression)
{
if (Expression != null)
{
double doubleVal;
return double.TryParse(Expression.ToString(), out doubleVal);
}
return false;
}
/// <summary>
/// string型轉(zhuǎn)換為bool型
/// </summary>
/// <param name="strValue">要轉(zhuǎn)換的字符串</param>
/// <param name="defValue">缺省值</param>
/// <returns>轉(zhuǎn)換后的bool類型結(jié)果</returns>
public static bool StrToBool(object Expression, bool defValue)
{
if (Expression != null)
{
bool boolValue;
if (bool.TryParse(Expression.ToString(), out boolValue))
return boolValue;
else
return defValue;
}
return defValue;
}
/// <summary>
/// 將對象轉(zhuǎn)換為Int32類型
/// </summary>
/// <param name="strValue">要轉(zhuǎn)換的字符串</param>
/// <param name="defValue">缺省值</param>
/// <returns>轉(zhuǎn)換后的Int32類型結(jié)果</returns>
public static int StrToInt(object Expression, int defValue)
{
if (Expression != null)
{
int intValue;
if (int.TryParse(Expression.ToString(), out intValue))
return intValue;
else
return defValue;
}
return defValue;
}
/// <summary>
/// string型轉(zhuǎn)換為float型
/// </summary>
/// <param name="strValue">要轉(zhuǎn)換的字符串</param>
/// <param name="defValue">缺省值</param>
/// <returns>轉(zhuǎn)換后的float類型結(jié)果</returns>
public static float StrToFloat(object strValue, float defValue)
{
if (strValue != null)
{
float floatValue;
if (float.TryParse(strValue.ToString(), out floatValue))
return floatValue;
else
return defValue;
}
return defValue;
}
/// <summary>
/// string型轉(zhuǎn)換為Decimal型
/// </summary>
/// <param name="strValue">要轉(zhuǎn)換的字符串</param>
/// <param name="defValue">缺省值</param>
/// <returns>轉(zhuǎn)換后的Decimal類型結(jié)果</returns>
public static Decimal StrToDecimal(object strValue, Decimal defValue)
{
if (strValue != null)
{
Decimal decimalValue;
if (Decimal.TryParse(strValue.ToString(), out decimalValue))
return Math.Round(decimalValue,2);
else
return defValue;
}
return defValue;
}
/// <summary>
/// string型轉(zhuǎn)換為datetime型
/// </summary>
/// <param name="strValue">要轉(zhuǎn)換的字符串</param>
/// <param name="defValue">缺省值</param>
/// <returns>轉(zhuǎn)換后的datetime類型結(jié)果</returns>
public static DateTime StrToDateTime(object strValue, DateTime defValue)
{
if (strValue != null)
{
DateTime DateTimeValue;
if (DateTime.TryParse(strValue.ToString(), out DateTimeValue))
return DateTimeValue;
else
return defValue;
}
return defValue;
}
/// <summary>
/// 判斷給定的字符串?dāng)?shù)組(strNumber)中的數(shù)據(jù)是不是都為數(shù)值型
/// </summary>
/// <param name="strNumber">要確認(rèn)的字符串?dāng)?shù)組</param>
/// <returns>是則返加true 不是則返回 false</returns>
public static bool IsNumericArray(string[] strNumber)
{
if (strNumber == null)
{
return false;
}
if (strNumber.Length < 1)
{
return false;
}
foreach (string id in strNumber)
{
if (!IsNumeric(id))
{
return false;
}
}
return true;
}
}
}

相關(guān)文章

最新評論

三亚市| 万安县| 杭州市| 上杭县| 新巴尔虎右旗| 土默特右旗| 图木舒克市| 吉隆县| 自贡市| 罗甸县| 西乌珠穆沁旗| 磴口县| 竹溪县| 曲水县| 富川| 拉萨市| 治多县| 衡阳县| 日照市| 石林| 嘉善县| 乐至县| 康定县| 波密县| 乌鲁木齐县| 呼伦贝尔市| 扎兰屯市| 慈利县| 泸州市| 栖霞市| 鄢陵县| 额济纳旗| 阿克陶县| 年辖:市辖区| 商水县| 大田县| 吉隆县| 沾化县| 嘉峪关市| 阿巴嘎旗| 商南县|