Skip to content

Instantly share code, notes, and snippets.

@pregress
pregress / gist:3433214
Created August 23, 2012 05:59
Right Tapped Command
public sealed class RightTapped
{
#region Properties
#region Command
///
/// GetCommand
///
///
@pregress
pregress / DateTimeExtensions.cs
Created August 8, 2012 11:17
DateTimeExtensions
public static class DateTimeExtensions
{
public static bool IsToday(this DateTime currentDate)
{
return (currentDate >= DateTime.Today && currentDate < DateTime.Today.AddHours(24));
}
}