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
/// Initializes a new instance of the <see cref="ConcurrentLimitedQueue{T}" /> class with the specified maximum length.
52
+
/// </remarks>
53
+
/// <param name="limit">队列的最大长度,必须大于0 / The maximum number of elements the queue can hold, must be greater than 0.</param>
54
+
/// <exception cref="ArgumentOutOfRangeException">当 <paramref name="limit"/> 小于或等于0时抛出 / Thrown when <paramref name="limit"/> is less than or equal to 0.</exception>
/// Initializes a new instance of the <see cref="ConcurrentLimitedQueue{T}" /> class with the specified collection and sets the maximum length to the number of elements in the collection.
66
+
/// </remarks>
67
+
/// <param name="list">用于初始化队列的集合,不能为null / The collection to initialize the queue with, cannot be null.</param>
68
+
/// <exception cref="ArgumentNullException">当 <paramref name="list"/> 为 null 时抛出 / Thrown when <paramref name="list"/> is null.</exception>
0 commit comments