mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 17:01:48 +03:00
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
namespace MicroIoc
|
|
{
|
|
public class Tuple<T1, T2>
|
|
{
|
|
public Tuple(T1 item1, T2 item2)
|
|
{
|
|
Item1 = item1;
|
|
Item2 = item2;
|
|
}
|
|
|
|
public T1 Item1 { get; private set; }
|
|
public T2 Item2 { get; private set; }
|
|
|
|
public bool Equals(Tuple<T1, T2> other)
|
|
{
|
|
if (ReferenceEquals(null, other))
|
|
{
|
|
return false;
|
|
}
|
|
if (ReferenceEquals(this, other))
|
|
{
|
|
return true;
|
|
}
|
|
return Equals(other.Item1, Item1) && Equals(other.Item2, Item2);
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (ReferenceEquals(null, obj))
|
|
{
|
|
return false;
|
|
}
|
|
if (ReferenceEquals(this, obj))
|
|
{
|
|
return true;
|
|
}
|
|
if (obj.GetType() != typeof(Tuple<T1, T2>))
|
|
{
|
|
return false;
|
|
}
|
|
return Equals((Tuple<T1, T2>)obj);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
unchecked
|
|
{
|
|
return (Item1.GetHashCode() * 397) ^ Item2.GetHashCode();
|
|
}
|
|
}
|
|
}
|
|
} |