C# Class ResumeFactory.Common.DataTypeConverter

不引发异常的类型转换
Afficher le fichier Open project: vincentlauvlwj/FrameDAL

Méthodes publiques

Méthode Description
ToDecimal ( this input, decimal &output ) : bool
ToDecimal ( this input, decimal defaultValue ) : decimal
ToDouble ( this input, double &output ) : bool
ToDouble ( this input, double defaultValue ) : double
ToInt32 ( this input, int &output ) : bool
ToInt32 ( this input, int defaultValue ) : int
isDecimal ( this input ) : bool

判断输入是否为小数

isInt ( this input ) : bool

判断输入是否为整数

isNumber ( this input ) : bool

判断输入是否为数字

Method Details

ToDecimal() public static méthode

public static ToDecimal ( this input, decimal &output ) : bool
input this
output decimal
Résultat bool

ToDecimal() public static méthode

public static ToDecimal ( this input, decimal defaultValue ) : decimal
input this
defaultValue decimal
Résultat decimal

ToDouble() public static méthode

public static ToDouble ( this input, double &output ) : bool
input this
output double
Résultat bool

ToDouble() public static méthode

public static ToDouble ( this input, double defaultValue ) : double
input this
defaultValue double
Résultat double

ToInt32() public static méthode

public static ToInt32 ( this input, int &output ) : bool
input this
output int
Résultat bool

ToInt32() public static méthode

public static ToInt32 ( this input, int defaultValue ) : int
input this
defaultValue int
Résultat int

isDecimal() public static méthode

判断输入是否为小数
public static isDecimal ( this input ) : bool
input this
Résultat bool

isInt() public static méthode

判断输入是否为整数
public static isInt ( this input ) : bool
input this
Résultat bool

isNumber() public static méthode

判断输入是否为数字
public static isNumber ( this input ) : bool
input this
Résultat bool