Esempio n. 1
0
 /// <inheritdoc/>
 public bool Equals(UniversalLocation other)
 {
     return(m_absolutePath.Equals(other.m_absolutePath) && m_absolutePosition == other.m_absolutePosition && m_lineInfo.Equals(other.m_lineInfo));
 }
 /// <inheritdoc/>
 public bool Equals(ModuleReferenceWithProvenance other)
 {
     return(string.Equals(Name, other.Name) &&
            m_referencedFromLineInfo.Equals(other.m_referencedFromLineInfo) &&
            m_referencedFromPath.Equals(other.m_referencedFromPath, StringComparison.OrdinalIgnoreCase));
 }