@@ -53,6 +53,19 @@ public static T CheckNotNull<T>(T? value, string message = ArgumentNull)
53
53
return value ?? throw new InvalidOperationException ( message ) ;
54
54
}
55
55
56
+ /// <summary>
57
+ /// Performs a general pre-condition check that fails if the specified value is <see langword="null"/>.
58
+ /// </summary>
59
+ /// <param name="value">The nullable value to check.</param>
60
+ /// <param name="message">The exception message to throw in the event that the specified value is <see langword="null"/>.</param>
61
+ /// <typeparam name="T">The underlying type of the value.</typeparam>
62
+ /// <returns>Returns a non-null value of the specified type.</returns>
63
+ /// <exception cref="InvalidOperationException">If the specified value is <see langword="null"/>.</exception>
64
+ public static T CheckNotNull < T > ( T ? value , string message = ArgumentNull ) where T : struct
65
+ {
66
+ return value ?? throw new InvalidOperationException ( message ) ;
67
+ }
68
+
56
69
/// <summary>
57
70
/// Performs a general pre-condition check that fails if the specified value is <see langword="null"/> or an empty string.
58
71
/// </summary>
@@ -99,6 +112,7 @@ public static void Require(bool condition, string message = ArgumentFailed, stri
99
112
/// <param name="parameterName">The name of the invalid parameter.</param>
100
113
/// <exception cref="ArgumentOutOfRangeException">If the specified condition is <see langword="false"/>.</exception>
101
114
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
115
+ [ Obsolete ( "This method is obsolete and will be removed in a future version. Use RequireWithinRangeInclusive or RequireWithinRangeExclusive methods instead." ) ]
102
116
public static void RequireWithinRange ( bool condition , string message = ArgumentOutOfRange , string ? parameterName = null )
103
117
{
104
118
if ( ! condition ) throw new ArgumentOutOfRangeException ( parameterName , message ) ;
@@ -148,6 +162,20 @@ public static T RequireNotNull<T>(T? value, string message = ArgumentNull, strin
148
162
return value ?? throw new ArgumentNullException ( parameterName , message ) ;
149
163
}
150
164
165
+ /// <summary>
166
+ /// Performs a general pre-condition requirement that fails if the specified value is <see langword="null"/>.
167
+ /// </summary>
168
+ /// <param name="value">The nullable value to check.</param>
169
+ /// <param name="message">The exception message to throw in the event that the specified value is <see langword="null"/>.</param>
170
+ /// <param name="parameterName">The name of the invalid parameter.</param>
171
+ /// <typeparam name="T">The underlying type of the value.</typeparam>
172
+ /// <returns>Returns a non-null value of the specified type.</returns>
173
+ /// <exception cref="ArgumentNullException">If the specified value is <see langword="null"/>.</exception>
174
+ public static T RequireNotNull < T > ( T ? value , string message = ArgumentNull , string ? parameterName = null ) where T : struct
175
+ {
176
+ return value ?? throw new ArgumentNullException ( parameterName , message ) ;
177
+ }
178
+
151
179
/// <summary>
152
180
/// Performs a general pre-condition requirement that fails if the specified value is <see langword="null"/> or an empty string.
153
181
/// </summary>
0 commit comments