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