Ty.FnTyRef.FnTyRef C# (CSharp) Method

FnTyRef() public method

public FnTyRef ( List parameterTys, TyRef returnTy ) : System
parameterTys List
returnTy TyRef
return System
        public FnTyRef(List<TyRef> parameterTys, TyRef returnTy)
        {
            this.parameterTys = parameterTys;
            this.returnTy = returnTy;
        }