SIL.FieldWorks.FDO.Infrastructure.CustomFieldInfo.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			return m_classname.GetHashCode()
				   ^ m_destinationClass
				   ^ (m_fieldHelp == null ? 0 : m_fieldHelp.GetHashCode())
				   ^ m_fieldListRoot.GetHashCode()
				   ^ m_fieldname.GetHashCode()
				   ^ m_fieldType.GetHashCode()
				   ^ m_fieldWs
				   ^ m_flid
				   ^ Label.GetHashCode();
		}