C# Class DateTimeParser, ProfessionalAccounting

Show file Open project: b1f6c1c4/ProfessionalAccounting Class Usage Examples

Public Methods

Method Description
Parse ( string str ) : DateTime,
ParseExact ( string str, string format ) : DateTime,
TryParse ( string str, DateTime, &result ) : bool
TryParseExact ( string str, string format, DateTime, &result ) : bool

Method Details

Parse() public static method

public static Parse ( string str ) : DateTime,
str string
return DateTime,

ParseExact() public static method

public static ParseExact ( string str, string format ) : DateTime,
str string
format string
return DateTime,

TryParse() public static method

public static TryParse ( string str, DateTime, &result ) : bool
str string
result DateTime,
return bool

TryParseExact() public static method

public static TryParseExact ( string str, string format, DateTime, &result ) : bool
str string
format string
result DateTime,
return bool