Compile() private method

private Compile ( Compiler compiler ) : void
compiler Compiler
return void
コード例 #1
0
ファイル: Compiler.cs プロジェクト: lateralusX/runtime
        public virtual WithParamAction CreateWithParamAction()
        {
            WithParamAction action = new WithParamAction();

            action.Compile(this);
            return(action);
        }
コード例 #2
0
ファイル: Compiler.cs プロジェクト: geoffkizer/corefx
 public virtual WithParamAction CreateWithParamAction()
 {
     WithParamAction action = new WithParamAction();
     action.Compile(this);
     return action;
 }