Enumerable.SequenceEqual 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
같음 비교자에 따라 두 시퀀스가 서로 같은지 확인합니다.
오버로드
SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>) |
해당 형식에 대한 기본 같음 비교자를 통해 요소를 비교하여 두 시퀀스가 서로 같은지 확인합니다. |
SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) |
지정된 IEqualityComparer<T>를 통해 요소를 비교하여 두 시퀀스가 서로 같은지 확인합니다. |
SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>)
- Source:
- SequenceEqual.cs
- Source:
- SequenceEqual.cs
- Source:
- SequenceEqual.cs
해당 형식에 대한 기본 같음 비교자를 통해 요소를 비교하여 두 시퀀스가 서로 같은지 확인합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static bool SequenceEqual(System::Collections::Generic::IEnumerable<TSource> ^ first, System::Collections::Generic::IEnumerable<TSource> ^ second);
public static bool SequenceEqual<TSource> (this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TSource> second);
static member SequenceEqual : seq<'Source> * seq<'Source> -> bool
<Extension()>
Public Function SequenceEqual(Of TSource) (first As IEnumerable(Of TSource), second As IEnumerable(Of TSource)) As Boolean
형식 매개 변수
- TSource
입력 시퀀스 요소의 형식입니다.
매개 변수
- first
- IEnumerable<TSource>
second
와 비교할 IEnumerable<T>입니다.
- second
- IEnumerable<TSource>
첫 번째 시퀀스와 비교할 IEnumerable<T>입니다.
반환
두 소스 시퀀스의 길이가 같고 해당 형식의 기본 같음 비교자에 따라 상응하는 요소가 서로 같으면 true
이고, 그렇지 않으면 false
입니다.
예외
first
또는 second
가 null
인 경우
예제
다음 코드 예제에서는 를 사용하여 SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>)
두 시퀀스가 같은지 여부를 확인하는 방법을 보여 줍니다. 처음 두 예제에서 메서드는 비교된 시퀀스에 동일한 개체에 대한 참조가 포함되어 있는지 여부를 결정합니다. 세 번째 및 네 번째 예제에서 메서드는 시퀀스 내의 개체의 실제 데이터를 비교합니다.
이 예제에서는 시퀀스가 같습니다.
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void SequenceEqualEx1()
{
Pet pet1 = new Pet { Name = "Turbo", Age = 2 };
Pet pet2 = new Pet { Name = "Peanut", Age = 8 };
// Create two lists of pets.
List<Pet> pets1 = new List<Pet> { pet1, pet2 };
List<Pet> pets2 = new List<Pet> { pet1, pet2 };
bool equal = pets1.SequenceEqual(pets2);
Console.WriteLine(
"The lists {0} equal.",
equal ? "are" : "are not");
}
/*
This code produces the following output:
The lists are equal.
*/
Class Pet
Public Name As String
Public Age As Integer
End Class
Sub SequenceEqualEx1()
' Create two Pet objects.
Dim pet1 As New Pet With {.Name = "Turbo", .Age = 2}
Dim pet2 As New Pet With {.Name = "Peanut", .Age = 8}
' Create two lists of pets.
Dim pets1 As New List(Of Pet)(New Pet() {pet1, pet2})
Dim pets2 As New List(Of Pet)(New Pet() {pet1, pet2})
'Determine if the two lists are equal.
Dim equal As Boolean = pets1.SequenceEqual(pets2)
' Display the output.
Dim text As String = IIf(equal, "are", "are not")
Console.WriteLine($"The lists {text} equal.")
End Sub
' This code produces the following output:
'
' The lists are equal.
다음 코드 예제에서는 같지 않은 두 시퀀스를 비교합니다. 시퀀스는 동일한 데이터를 포함하지만 포함된 개체에 참조가 다르기 때문에 시퀀스는 동일한 것으로 간주되지 않습니다.
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void SequenceEqualEx2()
{
Pet pet1 = new Pet() { Name = "Turbo", Age = 2 };
Pet pet2 = new Pet() { Name = "Peanut", Age = 8 };
// Create two lists of pets.
List<Pet> pets1 = new List<Pet> { pet1, pet2 };
List<Pet> pets2 =
new List<Pet> { new Pet { Name = "Turbo", Age = 2 },
new Pet { Name = "Peanut", Age = 8 } };
bool equal = pets1.SequenceEqual(pets2);
Console.WriteLine("The lists {0} equal.", equal ? "are" : "are not");
}
/*
This code produces the following output:
The lists are not equal.
*/
' Create two Pet objects.
Dim pet1 As New Pet With {.Name = "Turbo", .Age = 2}
Dim pet2 As New Pet With {.Name = "Peanut", .Age = 8}
' Create two lists of pets.
Dim pets1 As New List(Of Pet)()
pets1.Add(pet1)
pets1.Add(pet2)
Dim pets2 As New List(Of Pet)()
pets2.Add(New Pet With {.Name = "Turbo", .Age = 2})
pets2.Add(New Pet With {.Name = "Peanut", .Age = 8})
' Determine if the two lists are equal.
Dim equal As Boolean = pets1.SequenceEqual(pets2)
' Display the output.
Dim text As String = IIf(equal, "are", "are not")
Console.WriteLine($"The lists {text} equal.")
' This code produces the following output:
'
' The lists are not equal.
참조를 비교하는 대신 시퀀스에서 개체의 실제 데이터를 비교하려면 클래스에서 제네릭 인터페이스를 IEqualityComparer<T> 구현해야 합니다. 다음 코드 예제에서는 도우미 클래스에서 이 인터페이스를 구현하고 및 Equals 메서드를 제공하는 GetHashCode 방법을 보여 줍니다.
public class ProductA : IEquatable<ProductA>
{
public string Name { get; set; }
public int Code { get; set; }
public bool Equals(ProductA other)
{
if (other is null)
return false;
return this.Name == other.Name && this.Code == other.Code;
}
public override bool Equals(object obj) => Equals(obj as ProductA);
public override int GetHashCode() => (Name, Code).GetHashCode();
}
Public Class ProductA
Inherits IEquatable(Of ProductA)
Public Property Name As String
Public Property Code As Integer
Public Function Equals(ByVal other As ProductA) As Boolean
If other Is Nothing Then Return False
Return Me.Name = other.Name AndAlso Me.Code = other.Code
End Function
Public Overrides Function Equals(ByVal obj As Object) As Boolean
Return Equals(TryCast(obj, ProductA))
End Function
Public Overrides Function GetHashCode() As Integer
Return (Name, Code).GetHashCode()
End Function
End Class
이 인터페이스를 구현한 후 다음 예제와 같이 메서드에서 SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>)
개체 시 ProductA
퀀스를 사용할 수 있습니다.
ProductA[] storeA = { new ProductA { Name = "apple", Code = 9 },
new ProductA { Name = "orange", Code = 4 } };
ProductA[] storeB = { new ProductA { Name = "apple", Code = 9 },
new ProductA { Name = "orange", Code = 4 } };
bool equalAB = storeA.SequenceEqual(storeB);
Console.WriteLine("Equal? " + equalAB);
/*
This code produces the following output:
Equal? True
*/
Dim storeA() As Product =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "orange", .Code = 4}}
Dim storeB() As Product =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "orange", .Code = 4}}
Dim equalAB = storeA.SequenceEqual(storeB)
Console.WriteLine("Equal? " & equalAB)
' This code produces the following output:
' Equal? True
설명
메서드는 SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>)
두 소스 시퀀스를 병렬로 열거하고 에 Default대한 TSource
기본 같음 비교자를 사용하여 해당 요소를 비교합니다.
기본 같음 비교자 는 Default형식의 값을 비교하는 데 사용됩니다. 사용자 지정 데이터 형식을 비교하려면 및 메서드를 재정 Equals 의 GetHashCode 하고 필요에 따라 사용자 지정 형식에서 제네릭 인터페이스를 IEquatable<T> 구현해야 합니다. 자세한 내용은 Default 속성을 참조하세요.
적용 대상
SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)
- Source:
- SequenceEqual.cs
- Source:
- SequenceEqual.cs
- Source:
- SequenceEqual.cs
지정된 IEqualityComparer<T>를 통해 요소를 비교하여 두 시퀀스가 서로 같은지 확인합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static bool SequenceEqual(System::Collections::Generic::IEnumerable<TSource> ^ first, System::Collections::Generic::IEnumerable<TSource> ^ second, System::Collections::Generic::IEqualityComparer<TSource> ^ comparer);
public static bool SequenceEqual<TSource> (this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TSource> second, System.Collections.Generic.IEqualityComparer<TSource> comparer);
public static bool SequenceEqual<TSource> (this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TSource> second, System.Collections.Generic.IEqualityComparer<TSource>? comparer);
static member SequenceEqual : seq<'Source> * seq<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> bool
<Extension()>
Public Function SequenceEqual(Of TSource) (first As IEnumerable(Of TSource), second As IEnumerable(Of TSource), comparer As IEqualityComparer(Of TSource)) As Boolean
형식 매개 변수
- TSource
입력 시퀀스 요소의 형식입니다.
매개 변수
- first
- IEnumerable<TSource>
second
와 비교할 IEnumerable<T>입니다.
- second
- IEnumerable<TSource>
첫 번째 시퀀스와 비교할 IEnumerable<T>입니다.
- comparer
- IEqualityComparer<TSource>
요소를 비교하는 데 사용할 IEqualityComparer<T>입니다.
반환
두 소스 시퀀스의 길이가 같고 comparer
에 따라 해당 요소가 서로 같은 것으로 비교되면 true
이고, 그렇지 않으면 false
입니다.
예외
first
또는 second
가 null
인 경우
예제
다음 예제에서는 메서드에서 사용할 SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) 수 있는 같음 비교자를 구현하는 방법을 보여 줍니다.
public class Product
{
public string Name { get; set; }
public int Code { get; set; }
}
// Custom comparer for the Product class
class ProductComparer : IEqualityComparer<Product>
{
// Products are equal if their names and product numbers are equal.
public bool Equals(Product x, Product y)
{
//Check whether the compared objects reference the same data.
if (Object.ReferenceEquals(x, y)) return true;
//Check whether any of the compared objects is null.
if (Object.ReferenceEquals(x, null) || Object.ReferenceEquals(y, null))
return false;
//Check whether the products' properties are equal.
return x.Code == y.Code && x.Name == y.Name;
}
// If Equals() returns true for a pair of objects
// then GetHashCode() must return the same value for these objects.
public int GetHashCode(Product product)
{
//Check whether the object is null
if (Object.ReferenceEquals(product, null)) return 0;
//Get hash code for the Name field if it is not null.
int hashProductName = product.Name == null ? 0 : product.Name.GetHashCode();
//Get hash code for the Code field.
int hashProductCode = product.Code.GetHashCode();
//Calculate the hash code for the product.
return hashProductName ^ hashProductCode;
}
}
Public Class Product
Public Property Name As String
Public Property Code As Integer
End Class
' Custom comparer for the Product class
Public Class ProductComparer
Implements IEqualityComparer(Of Product)
Public Function Equals1(
ByVal x As Product,
ByVal y As Product
) As Boolean Implements IEqualityComparer(Of Product).Equals
' Check whether the compared objects reference the same data.
If x Is y Then Return True
'Check whether any of the compared objects is null.
If x Is Nothing OrElse y Is Nothing Then Return False
' Check whether the products' properties are equal.
Return (x.Code = y.Code) AndAlso (x.Name = y.Name)
End Function
Public Function GetHashCode1(
ByVal product As Product
) As Integer Implements IEqualityComparer(Of Product).GetHashCode
' Check whether the object is null.
If product Is Nothing Then Return 0
' Get hash code for the Name field if it is not null.
Dim hashProductName =
If(product.Name Is Nothing, 0, product.Name.GetHashCode())
' Get hash code for the Code field.
Dim hashProductCode = product.Code.GetHashCode()
' Calculate the hash code for the product.
Return hashProductName Xor hashProductCode
End Function
End Class
이 비교자를 구현한 후 다음 예제와 같이 메서드에서 SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) 개체 시 Product
퀀스를 사용할 수 있습니다.
Product[] storeA = { new Product { Name = "apple", Code = 9 },
new Product { Name = "orange", Code = 4 } };
Product[] storeB = { new Product { Name = "apple", Code = 9 },
new Product { Name = "orange", Code = 4 } };
bool equalAB = storeA.SequenceEqual(storeB, new ProductComparer());
Console.WriteLine("Equal? " + equalAB);
/*
This code produces the following output:
Equal? True
*/
Dim storeA() As Product =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "orange", .Code = 4}}
Dim storeB() As Product =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "orange", .Code = 4}}
Dim equalAB = storeA.SequenceEqual(storeB, New ProductComparer())
Console.WriteLine("Equal? " & equalAB)
' This code produces the following output:
' Equal? True
설명
메서드는 SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) 두 소스 시퀀스를 병렬로 열거하고 지정된 IEqualityComparer<T>를 사용하여 해당 요소를 비교합니다. 가 이null
면 comparer
기본 같음 비교자인 Default가 요소를 비교하는 데 사용됩니다.
적용 대상
.NET