Remotion.Linq.SqlBackend.BooleanUtility.IsBooleanType C# (CSharp) 메소드

IsBooleanType() 공개 정적인 메소드

public static IsBooleanType ( Type type ) : bool
type System.Type
리턴 bool
    public static bool IsBooleanType (Type type)
    {
      ArgumentUtility.CheckNotNull ("type", type);
      return type == typeof (bool) || type == typeof (bool?);
    }