Foxoft.Ci.CiType.Accept C# (CSharp) 메소드

Accept() 공개 메소드

public Accept ( ICiTypeVisitor v ) : CiType
v ICiTypeVisitor
리턴 CiType
        public virtual CiType Accept(ICiTypeVisitor v)
        {
            return this;
        }

Usage Example

예제 #1
0
파일: CiResolver.cs 프로젝트: epi/cito
 CiType Resolve(CiType type)
 {
     return type.Accept(this);
 }