ModelCollationComparer.Equals Method (IList<String>, IList<String>)
Indicates whether two provided lists of type string are equal.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Function Equals ( _
x As IList(Of String), _
y As IList(Of String) _
) As Boolean
public bool Equals(
IList<string> x,
IList<string> y
)
public:
virtual bool Equals(
IList<String^>^ x,
IList<String^>^ y
) sealed
abstract Equals :
x:IList<string> *
y:IList<string> -> bool
override Equals :
x:IList<string> *
y:IList<string> -> bool
public final function Equals(
x : IList<String>,
y : IList<String>
) : boolean
Parameters
- x
Type: System.Collections.Generic.IList<String>
An IList<T> of type string that represents the source object.
- y
Type: System.Collections.Generic.IList<String>
An IList<T> of type string that represents the target object.
Return Value
Type: System.Boolean
true if the two lists are equal; otherwise, false;
Implements
IEqualityComparer<T>.Equals(T, T)
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.