CSharp examples for System:DateTime Day
Determines whether specified object represents a Thursday day of week.
using System.Globalization; using System;//w w w .ja va 2 s . c o m public class Main{ /// <summary> /// <para>Determines whether specified <see cref="DateTime"/> object represents a Thursday day of week.</para> /// </summary> /// <param name="self">Date instance.</param> /// <returns><c>true</c> of <paramref name="self"/>'s day of week is Thursday, false if not.</returns> /// <seealso cref="DateTime.DayOfWeek"/> public static bool Thursday(this DateTime self) { return self.DayOfWeek == DayOfWeek.Thursday; } }