C# Tutorial List
Add
- Add an object to the end of the List in CSharp
- Add the elements from another collection to the end of the List in CSharp
- Insert a collection the List at the specified index in CSharp
- Insert an element into the List at the specified index in CSharp
Search
- Binary search sub List for an element with specified comparer and returns the zero-based index in CSharp
- Check if the List contains elements that match the conditions defined by the specified predicate in CSharp
- Check if user defined element is in the List in CSharp
- Search an element for predicate, and returns the last occurrence within List in CSharp
- Search an element that matches the predicate, returns index within the range of elements in the sub List in CSharp
- Search element by predicate and return the last occurrence within List in CSharp
- Search element by predicate and returns based index last occurrence within sub List in CSharp
- Search element by predicate, and returns index of last occurrence within sub list in CSharp
- Search element for predicate, returns the first occurrence within List in CSharp
- Search elements matching specified predicate in CSharp
- Search for an element matching the specified predicate, and returns the first occurrence within List in CSharp
- Search for an element that matches specified predicate, returns the zero-based index within entire List in CSharp
- Search object and returns index of last occurrence within offset List in CSharp
- Search object and returns index of the first occurrence within the sub List in CSharp
- Search object and returns index of the last occurrence within sub List in CSharp
- Search object and returns the zero-based index of the first occurrence within List in CSharp
- Search object and returns the zero-based index of the first occurrence within offset List in CSharp
- Search object and returns the zero-based index of the last occurrence within List in CSharp
- Search sorted List for an element with default comparer and returns the zero-based index of the element in CSharp
- Search sorted List for an element with specified comparer and returns the zero-based index of the element in CSharp
Basic
- Check if every element in List matches the conditions defined by the specified predicate in CSharp
- Do action on each element of the List in CSharp
- Get a sub range of elements from List in CSharp
- Get or set the element at the specified index in a List in CSharp
- Get or set the total number of elements the internal data structure can hold without resizing in CSharp
- Get the number of elements contained in the List in CSharp
- Set the capacity to the actual number of elements in List in CSharp
Convert
- Convert List to array in CSharp
- Convert elements in List in CSharp
- Convert elements in a List with custom function in CSharp
Copy
- Copy List and array, starting at the specified index of the target array in CSharp
- Copy List to and array, starting at the beginning of the target array in CSharp
- Copy a sub List to an array starting at the specified index of the target array in CSharp
Create
- Create List that is empty and has the default initial capacity in CSharp
- Create a List from another collection in CSharp
- Create a List that is empty and has the specified initial capacity in CSharp
- Create a read-only List for the current collection in CSharp
Remove
- Remove a range of elements from the List in CSharp
- Remove all elements from the List in CSharp
- Remove all the elements that match the conditions defined by the specified predicate in CSharp
- Remove all with delegate in CSharp
- Remove the element at the specified index of the List in CSharp
- Remove the first occurrence of a specific object from List in CSharp
Reverse
- Reverse the order of the elements in List sub range in CSharp
- Reverse the order of the elements in the entire List in CSharp
Sort
- Sort List using the specified comparer in CSharp
- Sort sub List using the specified comparer in CSharp
- Sort the elements in List using the default comparer in CSharp
- Sort the elements in List using the specified System.Comparison in CSharp