Class ModelExtensions
Extension methods.
Inherited Members
Namespace: Sdl.Core.Bcm.BcmModel.Common
Assembly: Sdl.Core.Bcm.BcmModel.dll
Syntax
public static class ModelExtensions
Methods
IsSequenceEqual<TSource>(IList<TSource>, IList<TSource>)
Performs a deep comparison between two IList<T>
Declaration
public static bool IsSequenceEqual<TSource>(this IList<TSource> first, IList<TSource> second)
Parameters
| Type | Name | Description |
|---|---|---|
| IList<TSource> | first | The first collection. |
| IList<TSource> | second | The second collection. |
Returns
| Type | Description |
|---|---|
| bool | True if the collections are deeply equal. Otherwise false. |
Type Parameters
| Name | Description |
|---|---|
| TSource | The collection element type. |