예제 #1
0
 /// <summary>
 /// Visits the specified type reference.
 /// </summary>
 public virtual void Visit(ITypeReference typeReference)
 {
     //ITypeReference is a base interface that should never be implemented directly.
       //Get typeReference to call the most type specific visitor.
       typeReference.Dispatch(this);
 }
예제 #2
0
 /// <summary>
 /// Visits the specified type reference.
 /// </summary>
 /// <param name="typeReference">The type reference.</param>
 public virtual void Visit(ITypeReference typeReference)
 {
     // ITypeReference is a base interface that should never be implemented directly.
     // Get typeReference to call the most type specific visitor.
     typeReference.Dispatch(this);
 }