Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Last active May 19, 2019 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save PradeepLoganathan/bc4ae7daf64d5db4c4912000148011e2 to your computer and use it in GitHub Desktop.
Save PradeepLoganathan/bc4ae7daf64d5db4c4912000148011e2 to your computer and use it in GitHub Desktop.
C# Guard class with common validation checks.
public static class Guard
{
public static void AgainstNull<T>(T value)
where T : class
{
if (value == null)
throw new ArgumentNullException();
}
public static void AgainstNull<T>(T value, string paramName)
where T : class
{
if (value == null)
throw new ArgumentNullException(paramName);
}
public static void AgainstNull<T>(T value, string paramName, string message)
where T : class
{
if (value == null)
throw new ArgumentNullException(paramName, message);
}
public static void AgainstNull<T>(T? value)
where T : struct
{
if (!value.HasValue)
throw new ArgumentNullException();
}
public static void AgainstNull<T>(T? value, string paramName)
where T : struct
{
if (!value.HasValue)
throw new ArgumentNullException(paramName);
}
public static void AgainstNull<T>(T? value, string paramName, string message)
where T : struct
{
if (!value.HasValue)
throw new ArgumentNullException(paramName, message);
}
public static void AgainstNull(string value)
{
if (value.IsNull())
throw new ArgumentNullException();
}
public static void AgainstNull(string value, string paramName)
{
if (value.IsNull())
throw new ArgumentNullException(paramName);
}
public static void AgainstNull(string value, string paramName, string message)
{
if (value.IsNull())
throw new ArgumentNullException(paramName, message);
}
public static void AgainstEmpty(string value)
{
if (value.IsEmpty())
throw new ArgumentException("string value must not be empty");
}
public static void AgainstEmpty(string value, string paramName)
{
if (value.IsEmpty())
throw new ArgumentException("string value must not be empty", paramName);
}
public static void AgainstEmpty(string value, string paramName, string message)
{
if (value.IsEmpty())
throw new ArgumentException(message, paramName);
}
public static void GreaterThan<T>(T lowerLimit, T value)
where T : IComparable<T>
{
if (value.CompareTo(lowerLimit) <= 0)
throw new ArgumentOutOfRangeException();
}
public static void GreaterThan<T>(T lowerLimit, T value, string paramName)
where T : IComparable<T>
{
if (value.CompareTo(lowerLimit) <= 0)
throw new ArgumentOutOfRangeException(paramName);
}
public static void GreaterThan<T>(T lowerLimit, T value, string paramName, string message)
where T : IComparable<T>
{
if (value.CompareTo(lowerLimit) <= 0)
throw new ArgumentOutOfRangeException(paramName, message);
}
public static void LessThan<T>(T upperLimit, T value)
where T : IComparable<T>
{
if (value.CompareTo(upperLimit) >= 0)
throw new ArgumentOutOfRangeException();
}
public static void LessThan<T>(T upperLimit, T value, string paramName)
where T : IComparable<T>
{
if (value.CompareTo(upperLimit) >= 0)
throw new ArgumentOutOfRangeException(paramName);
}
public static void LessThan<T>(T upperLimit, T value, string paramName, string message)
where T : IComparable<T>
{
if (value.CompareTo(upperLimit) >= 0)
throw new ArgumentOutOfRangeException(paramName, message);
}
public static void IsTrue<T>(Func<T, bool> condition, T target)
{
if (!condition(target))
throw new ArgumentException("condition was not true");
}
public static void IsTrue<T>(Func<T, bool> condition, T target, string paramName)
{
if (!condition(target))
throw new ArgumentException("condition was not true", paramName);
}
public static void IsTrue<T>(Func<T, bool> condition, T target, string paramName, string message)
{
if (!condition(target))
throw new ArgumentException(message, paramName);
}
public static T IsTypeOf<T>(object obj)
{
AgainstNull(obj);
if (obj is T)
return (T)obj;
throw new ArgumentException("{0} is not an instance of type {1}".FormatWith(obj.GetType().Name, typeof(T).Name));
}
}
@Noctis-
Copy link

Noctis- commented May 19, 2019

@kor

What is FormatWith? what is IsEmpty?

I went with adding:

  public static bool IsNull(this object o)
        {
            return o == null;
        }
        public static bool IsEmpty(this string s)
        {
            return s != null && string.IsNullOrEmpty(s);
        }

and altering the following: ``` public static T IsTypeOf(object obj)
{
AgainstNull(obj);

        if (obj is T)
            return (T)obj;

        throw new ArgumentException($"{obj.GetType().Name} is not an instance of type {typeof(T).Name}".);
    }```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment