示例#1
0
        public static ActionThread Create(bool indirect, ArticleThread thread)
        {
            ActionThread thread1 = ActionThread.Create(indirect);

            thread1.DestThread = thread;
            return(thread1);
        }
示例#2
0
        public static ActionThread Create(ArticleThread thread)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread = thread;
            return(thread1);
        }
示例#3
0
        public static ActionThread Create(ArticleThread thread, FileSpec filespec)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread        = thread;
            thread1.FileSpecification = filespec;
            return(thread1);
        }
 public void Remove(ArticleThread value)
 {
     base._Remove(value);
 }
 public void Add(ArticleThread value)
 {
     this[base.Count] = value;
 }