BExplorer.Shell.Interop.IconReference.GetHashCode C# (CSharp) Method

GetHashCode() public method

Generates a nearly unique hashcode for this structure.
public GetHashCode ( ) : int
return int
		public override int GetHashCode() {
			int hash = this.moduleName.GetHashCode();
			hash = hash * 31 + this.referencePath.GetHashCode();
			hash = hash * 31 + this.ResourceId.GetHashCode();
			return hash;
		}