SenseNet.ContentRepository.Storage.VersionNumber.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Serves as a hash function for a particular type. is suitable for use in hashing algorithms and data structures like a hash table.
public GetHashCode ( ) : int
Результат int
		public override int GetHashCode()
		{
			return _major.GetHashCode() | _minor.GetHashCode();
		}