Inheritance: ContainerAction
コード例 #1
0
ファイル: Compiler.cs プロジェクト: lateralusX/runtime
        public virtual CommentAction CreateCommentAction()
        {
            CommentAction action = new CommentAction();

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