Пример #1
0
 protected bool Equals(Qualifiers other)
 {
     return(Equals(Types, other.Types));
 }
Пример #2
0
 public Annotations(IEnumerable <IAnnotation> annotations)
 {
     _annotations = annotations.ToArray();
     Types        = _annotations.Select(x => x.GetType()).ToArray();
     Qualifiers   = new Qualifiers(_annotations.OfType <IQualifier>().ToArray());
 }