Class CollectionsListExtensions
Contains extension methods for enhancing the functionality of the List class and other list-like collections.
Inheritance
CollectionsListExtensions
Assembly: Coree.NETStandard.dll
Syntax
public static class CollectionsListExtensions
Methods
|
Edit this page
View Source
Dequeue<T>(List<T>)
Removes and returns the object at the beginning of the System.Collections.Generic.List`1.
Declaration
public static T? Dequeue<T>(this List<T> values) where T : class
Parameters
Type |
Name |
Description |
List<T> |
values |
|
Returns
Type |
Description |
T |
The object that is removed from the beginning of the System.Collections.List.List`1.
|
Type Parameters
Exceptions
|
Edit this page
View Source
Enqueue<T>(List<T>, T)
Adds an object to the end of the System.Collections.Generic.List`1.
Declaration
public static void Enqueue<T>(this List<T> values, T item) where T : class
Parameters
Type |
Name |
Description |
List<T> |
values |
|
T |
item |
The object to add to the System.Collections.Generic.List`1. The value can be null for reference types
|
Type Parameters
Exceptions