Returns a DateTime structure representing the third Friday of the month for the specified month and year.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public DateTime ThirdFridayOfMonth(
	int month,
	int year
)
Visual Basic (Declaration)
Public Function ThirdFridayOfMonth ( _
	month As Integer, _
	year As Integer _
) As DateTime
Visual C++
public:
DateTime ThirdFridayOfMonth(
	int month, 
	int year
)

Parameters

month
Type: System..::.Int32
integer containing the month.
year
Type: System..::.Int32
integer containing the year.

Return Value

Populated DateTime instance.

See Also