Пример #1
0
 /// <summary>
 /// Visits a type member.
 /// </summary>
 /// <remarks>
 /// If reflection metadata augmentation exists,
 /// this method will also be called for the
 /// <see cref="TypeDeclaration"/>-derived semantic
 /// classes <see cref="Class"/>, <see cref="Enum"/>,
 /// <see cref="Interface"/> and <see cref="Struct"/>.
 /// </remarks>
 public virtual void VisitType(TypeDeclaration type) => VisitMember(type);
Пример #2
0
 public override void VisitType(TypeDeclaration type)
 {
     base.VisitType(type);
     TypeCount++;
     //File.AppendAllLines("C:\\Temp\\" + platform + ".txt", new [] { type.ToString() });
 }