public class ConcurrentList<T> : IList<T>,
ICollection<T>, IEnumerable<T>, IEnumerable, IReadOnlyList<T>, IReadOnlyCollection<T>
Public Class ConcurrentList(Of T)
Implements IList(Of T), ICollection(Of T),
IEnumerable(Of T), IEnumerable, IReadOnlyList(Of T), IReadOnlyCollection(Of T)type ConcurrentList<'T> =
class
interface IList<'T>
interface ICollection<'T>
interface IEnumerable<'T>
interface IEnumerable
interface IReadOnlyList<'T>
interface IReadOnlyCollection<'T>
end| ConcurrentListT | 初始化ConcurrentListT类的新实例。 |
| ConcurrentListT(IEnumerableT) | 初始化ConcurrentListT类的新实例。 |
| ConcurrentListT(Int32) | 初始化ConcurrentListT类的新实例。 |
| Capacity | 获取或设置容量。 |
| Count | Gets the number of elements contained in the ICollectionT. |
| IsReadOnly | Gets a value indicating whether the ICollectionT is read-only. |
| Item | Gets or sets the element at the specified index. |
| Add | Adds an item to the ICollectionT. |
| AddRange | |
| BinarySearch(T) | |
| BinarySearch(T, IComparerT) | |
| BinarySearch(Int32, Int32, T, IComparerT) | |
| Clear | Removes all items from the ICollectionT. |
| Contains | Determines whether the ICollectionT contains a specific value. |
| ConvertAllTOutput | |
| CopyTo | Copies the elements of the ICollectionT to an Array, starting at a particular Array index. |
| Equals | Determines whether the specified object is equal to the current object. (继承自 Object。) |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (继承自 Object。) |
| Find | |
| FindAll | |
| FindIndex(PredicateT) | |
| FindIndex(Int32, PredicateT) | |
| FindIndex(Int32, Int32, PredicateT) | |
| FindLast | |
| FindLastIndex(PredicateT) | |
| FindLastIndex(Int32, PredicateT) | |
| FindLastIndex(Int32, Int32, PredicateT) | |
| ForEach | |
| GetEnumerator | Returns an enumerator that iterates through the collection. |
| GetHashCode | Serves as the default hash function. (继承自 Object。) |
| GetRange | |
| GetType | Gets the Type of the current instance. (继承自 Object。) |
| IndexOf(T) | Determines the index of a specific item in the IListT. |
| IndexOf(T, Int32) | |
| IndexOf(T, Int32, Int32) | |
| Insert | Inserts an item to the IListT at the specified index. |
| InsertRange | |
| LastIndexOf(T) | |
| LastIndexOf(T, Int32) | |
| LastIndexOf(T, Int32, Int32) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (继承自 Object。) |
| Remove | Removes the first occurrence of a specific object from the ICollectionT. |
| RemoveAll | |
| RemoveAt | Removes the IListT item at the specified index. |
| RemoveRange | |
| Reverse | |
| Reverse(Int32, Int32) | |
| Sort | |
| Sort(ComparisonT) | |
| Sort(IComparerT) | |
| Sort(Int32, Int32, IComparerT) | |
| ToArray | |
| ToString | Returns a string that represents the current object. (继承自 Object。) |
| TrimExcess | |
| TrueForAll |
| ForEachT |
循环遍历每个元素,执行Action动作
(由 CollectionsExtension 定义。) |
| ForEachAsyncT |
循环遍历每个元素,执行异步动作
(由 CollectionsExtension 定义。) |
| GetSafeEnumeratorT |
获取安全的枚举器。
(由 SystemExtension 定义。) |
| Map |
将源对象的属性映射到目标对象的属性中。
(由 Mapper 定义。) |
| Map |
将源对象映射到目标类型的实例。
(由 Mapper 定义。) |
| MapTTarget |
将源对象映射到指定目标类型的新实例。
(由 Mapper 定义。) |
| MapListT, T1 |
扩展方法,将一个泛型集合中的每个元素映射到另一个泛型类型的新集合。
(由 Mapper 定义。) |
| ToJsonString |
转换为Json
(由 SerializeConvert 定义。) |
| IEnumerableGetEnumerator | Returns an enumerator that iterates through a collection. |