Data Types C#

//http://arolibraries.codeplex.com/
//The MIT License (MIT)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AroLibraries.ExtensionMethods
{
    public static class NullableExt
    {
        public static bool Ext_HasValueAndEquals(this Nullable source, T target) where T : struct
        {
            return source.HasValue && source.Value.Equals(target);
        }
        public static bool Ext_HasValueAndEquals(this Nullable source, Nullable target) where T : struct
        {
            return source.HasValue && source.Value.Equals(target);
        }
    }
}