Creates a new instance of DefaultHolidaySchedule populated with dates provided by a TextReader.

Namespace:  com.ftlabs.fisa
Assembly:  FISA.NET (in FISA.NET.dll) Version: 1.0.3126.3801

Syntax

C#
public DefaultHolidaySchedule(
	TextReader textReader
)
Visual Basic (Declaration)
Public Sub New ( _
	textReader As TextReader _
)
Visual C++
public:
DefaultHolidaySchedule(
	TextReader^ textReader
)

Parameters

textReader
Type: System.IO..::.TextReader
A TextReader that provides the holiday dates.

Remarks

The dates provided by the TextReader must in the format of "m/d/yyyy", and must be delimited with a carriage return and/or a linefeed.

See Also