diff --git a/src/Shared/Throw.cs b/src/Shared/Throw.cs index 08182095eb..0ba4c86ae6 100644 --- a/src/Shared/Throw.cs +++ b/src/Shared/Throw.cs @@ -16,7 +16,7 @@ public static void IfFalse(string paramName, bool condition, string message) throw new ArgumentException(message, paramName); } - public static void IfFalse(string paramName, bool condition, string message, T arg0) + public static void IfFalse(string paramName, bool condition, string message, T0 arg0) { if (!condition) throw new ArgumentException(FormatMessage(message, arg0), paramName);