You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Ensures that the immutable array contains the specified item, or otherwise throws your custom exception.
228
+
/// </summary>
229
+
/// <param name="parameter">The immutable array to be checked.</param>
230
+
/// <param name="item">The item that must be part of the immutable array.</param>
231
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. <paramref name="parameter" /> and <paramref name="item" /> are passed to this delegate.</param>
232
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> does not contain <paramref name="item" />.</exception>
0 commit comments