C# Class Clippy.Core.NumberParsingExtensions

Mostrar archivo Open project: 24hr/Clippy

Public Methods

Method Description
ParseInt ( this text, int fallBack ) : int
ParseIntNullable ( this text ) : int?
ParseLong ( this text, long fallBack ) : long
ParseLongNullable ( this text ) : long?
ParseUInt ( this text, uint fallBack ) : uint
ParseUIntNullable ( this text ) : uint?
ParseULong ( this text, ulong fallBack ) : ulong
ParseULongNullable ( this text ) : ulong?

Method Details

ParseInt() public static method

public static ParseInt ( this text, int fallBack ) : int
text this
fallBack int
return int

ParseIntNullable() public static method

public static ParseIntNullable ( this text ) : int?
text this
return int?

ParseLong() public static method

public static ParseLong ( this text, long fallBack ) : long
text this
fallBack long
return long

ParseLongNullable() public static method

public static ParseLongNullable ( this text ) : long?
text this
return long?

ParseUInt() public static method

public static ParseUInt ( this text, uint fallBack ) : uint
text this
fallBack uint
return uint

ParseUIntNullable() public static method

public static ParseUIntNullable ( this text ) : uint?
text this
return uint?

ParseULong() public static method

public static ParseULong ( this text, ulong fallBack ) : ulong
text this
fallBack ulong
return ulong

ParseULongNullable() public static method

public static ParseULongNullable ( this text ) : ulong?
text this
return ulong?