C# Class Cliver.DateTimeRoutines.ParsedDateTime

Defines a substring where date-time was found and result of conversion
Show file Open project: MikeJansen/DateTimeRoutines

Public Properties

Property Type Description
DateTime System.DateTime
IndexOfDate int
IndexOfTime int
IsDateFound bool
IsTimeFound bool
LengthOfDate int
LengthOfTime int

Private Methods

Method Description
ParsedDateTime ( int index_of_date, int length_of_date, int index_of_time, int length_of_time, System.DateTime date_time ) : System

Property Details

DateTime public property

DateTime found in the string
public DateTime,System DateTime
return System.DateTime

IndexOfDate public property

Index of first char of a date substring found in the string
public int IndexOfDate
return int

IndexOfTime public property

Index of first char of a time substring found in the string
public int IndexOfTime
return int

IsDateFound public property

True if a date was found within the string
public bool IsDateFound
return bool

IsTimeFound public property

True if a time was found within the string
public bool IsTimeFound
return bool

LengthOfDate public property

Length a date substring found in the string
public int LengthOfDate
return int

LengthOfTime public property

Length of a time substring found in the string
public int LengthOfTime
return int