/// <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);
public override void VisitType(TypeDeclaration type) { base.VisitType(type); TypeCount++; //File.AppendAllLines("C:\\Temp\\" + platform + ".txt", new [] { type.ToString() }); }