Class EnumerableExtensions
Extension methods to make working with IEnumerable<T> values easier.
Inheritance
System.Object
EnumerableExtensions
Namespace: PnP.Framework.Extensions
Assembly: PnP.Framework.dll
Syntax
public static class EnumerableExtensions : object
Methods
DeepEquals<T>(IEnumerable<T>, IEnumerable<T>)
Compares to instances of IEnumerable<T>
Declaration
public static Boolean DeepEquals<T>(this IEnumerable<T> source, IEnumerable<T> target)
Parameters
IEnumerable<T>
source
Source enumeration |
IEnumerable<T>
target
Target enumeration |
Returns
Boolean
Wether the two enumerations are deep equal |
Type Parameters
T
The type of the enumerated item |