You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
648 B
24 lines
648 B
11 months ago
|
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
||
|
|
||
|
using System.Collections.Generic;
|
||
|
using System.Threading;
|
||
|
|
||
|
namespace Cysharp.Threading.Tasks
|
||
|
{
|
||
|
public class CancellationTokenEqualityComparer : IEqualityComparer<CancellationToken>
|
||
|
{
|
||
|
public static readonly IEqualityComparer<CancellationToken> Default = new CancellationTokenEqualityComparer();
|
||
|
|
||
|
public bool Equals(CancellationToken x, CancellationToken y)
|
||
|
{
|
||
|
return x.Equals(y);
|
||
|
}
|
||
|
|
||
|
public int GetHashCode(CancellationToken obj)
|
||
|
{
|
||
|
return obj.GetHashCode();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|