ImmutableArray<T>.Equals 메서드
정의
오버로드
Equals(ImmutableArray<T>) |
지정된 배열이 이 배열과 같은지 여부를 나타냅니다.Indicates whether specified array is equal to this array. |
Equals(Object) |
이 배열이 지정된 개체와 같은지 여부를 확인합니다.Determines if this array is equal to the specified object. |
Equals(ImmutableArray<T>)
지정된 배열이 이 배열과 같은지 여부를 나타냅니다.Indicates whether specified array is equal to this array.
public:
virtual bool Equals(System::Collections::Immutable::ImmutableArray<T> other);
public bool Equals (System.Collections.Immutable.ImmutableArray<T> other);
public bool Equals (System.Collections.Immutable.ImmutableArray<T>? other);
override this.Equals : System.Collections.Immutable.ImmutableArray<'T> -> bool
Public Function Equals (other As ImmutableArray(Of T)) As Boolean
매개 변수
- other
- ImmutableArray<T>
이 개체와 비교할 개체입니다.An object to compare with this object.
반환
true
가 이 배열과 같으면 other
이고, 그렇지 않으면 false
입니다.true
if other
is equal to this array; otherwise, false
.
구현
적용 대상
Equals(Object)
이 배열이 지정된 개체와 같은지 여부를 확인합니다.Determines if this array is equal to the specified object.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
매개 변수
반환
이 배열이 obj
와 같으면 true
이고, 그렇지 않으면 false
입니다.true
if this array is equal to obj
; otherwise, false
.