Class IEnumerableExtensions
This class contains extensions methods for IEnumerable
Inherited Members
Namespace: Swan
Syntax
public static class IEnumerableExtensions
Methods
UnionNull<T>(IEnumerable<T>, IEnumerable<T>)
This method make an union of two IEnumerables validation when some of them is null.
Declaration
public static IEnumerable<T> UnionNull<T>(this IEnumerable<T> this, IEnumerable<T> second)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<T> | this | The this. |
IEnumerable<T> | second | The second. |
Returns
Type | Description |
---|---|
IEnumerable<T> | The Union |
Type Parameters
Name | Description |
---|---|
T | T |