JSIL.Internal.SourceMapBuilder.Mapping.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
            public override int GetHashCode()
            {
                unchecked
                {
                    var hashCode = GeneratedLine.GetHashCode();
                    hashCode = (hashCode*397) ^ GeneratedColumn.GetHashCode();
                    hashCode = (hashCode*397) ^ OriginalLine.GetHashCode();
                    hashCode = (hashCode*397) ^ OriginalColumn.GetHashCode();
                    hashCode = (hashCode*397) ^ (Source != null ? Source.GetHashCode() : 0);
                    hashCode = (hashCode*397) ^ (Name != null ? Name.GetHashCode() : 0);
                    return hashCode;
                }
            }