コード例 #1
0
ファイル: Qualifiers.cs プロジェクト: worldspawn/cormo
 protected bool Equals(Qualifiers other)
 {
     return(Equals(Types, other.Types));
 }
コード例 #2
0
ファイル: Qualifiers.cs プロジェクト: worldspawn/cormo
 public Annotations(IEnumerable <IAnnotation> annotations)
 {
     _annotations = annotations.ToArray();
     Types        = _annotations.Select(x => x.GetType()).ToArray();
     Qualifiers   = new Qualifiers(_annotations.OfType <IQualifier>().ToArray());
 }