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

Example #1
0
 CiType Resolve(CiType type)
 {
     return type.Accept(this);
 }