Foxoft.Ci.CiType.Accept C# (CSharp) Method

Accept() public method

public Accept ( ICiTypeVisitor v ) : CiType
v ICiTypeVisitor
return 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);
 }