ساده ترین راه برای پیاده سازی GetHashCode
200, OK
https://www.tabsoverspaces.com/233725-easier-gethashcode-implementation-in-net-core-2-1 icon

In .NET Core 2.1 a new struct was added. It’s called  System.HashCode  and it makes generating hash codes super convenient. Have a look at this class. 

class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }

public override int GetHashCode() => HashCode.Combine(FirstName, LastName);
}
ساده ترین راه برای پیاده سازی GetHashCode