internal SymSourceAndCollection(SymSource aSource, SymbolCollection aCollection)
 {
     System.Diagnostics.Debug.Assert(aSource != null && aCollection != null);
     //
     iSource     = aSource;
     iCollection = aCollection;
 }
Ejemplo n.º 2
0
 public override bool Equals(object aObject)
 {
     if (aObject is SymSource)
     {
         SymSource other = (SymSource)aObject;
         bool      ret   = (string.Compare(other.URI, this.URI, StringComparison.CurrentCultureIgnoreCase) == 0);
         return(ret);
     }
     //
     return(base.Equals(aObject));
 }