Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7916107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T14:41:11+00:00 2026-06-03T14:41:11+00:00

I am learning how to use Interface of C#, I reading this artcile :

  • 0

I am learning how to use Interface of C#,
I reading this artcile :
http://www.codeproject.com/Articles/286863/I-Interface

One of the example:

    public class TaskComposite : ITask
{
    public TaskComposite(params ITask[] tasks)
    {
        this.composedTasks = new List<ITask>();
        if(tasks != null)
        {
            foreach(var task in tasks)
                AddTask(task);
        }
    }

    public void Do()
    {
        foreach(var task in this.composedTasks)
            task.Do();
    }

    public void AddTask(ITask task)
    {
         if(task != null)
             this.composedTasks.Add(task);
    }

    private List<ITask> composedTasks;
} 

The description said:

we can group a load of tasks together to be executed serially.

I create a Windows form as create a new instance of TaskComposite class, But what should i do next?

public partial class FormInterface : Form
{
    public FormInterface()
    {
        InitializeComponent();
    }


    private void FormInterface_Load(object sender, EventArgs e)
    {
        ITask[] TaskAry = new ITask[] { };
        TaskAry[0] = new TaskClass().Do(); //<=Error
        TaskComposite tc = new TaskComposite(TaskAry);
    }

    class TaskClass : ITask
    {
        public void Do()
        {
            Console.WriteLine(DateTime.Now.ToString());
        }
    }

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T14:41:13+00:00Added an answer on June 3, 2026 at 2:41 pm

    You have several mistakes here.

    First, when you create an array, you should specify its size, or initialize it. This is a difference between collections (which has variable size) and arrays. So, you should provide size

    ITask[] TaskAry = new ITask[1]; 
    TaskAry[0] = new TaskClass();
    

    Or initialize (size will be computed by compiler):

    ITask[] TaskAry = new ITask[] { new TaskClass() }; 
    

    But in your case, when params ITask[] tasks is used, you can simply pass list of tasks:

    TaskComposite tc = new TaskComposite(new TaskClass());
    

    Pattern Composite allows you to treat group of objects as single object. In your case composite task here to allow you treat several task as one task object. So, without composite task, you’ll need to use array/collection of tasks and execute each of them manually. Like this:

    ITask[] tasks = new ITask[] { new TaskClass(), new TaskClass() };
    foreach(ITask task in tasks)
        task.Do();
    

    With composite tasks you don’t need to iterate over all tasks:

    ITask compositeTask = new TaskComposite(new TaskClass(), new TaskClass());
    compositeTask.Do(); // executes all tasks
    

    You can pass composite task where simple ITask is expected. And no one will know that there is actually a bunch of tasks.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am learning to use xmlhttprequest/AJAX. In this sample code from w3schools, I do
i'l learning opencv with c++ and so i'm trying to use new c++ interface.
OK, so I am learning to use UIScrollView in interface builder. since the scrollView
I'm learning to use the Glassfish 3 REST interface directly, since the admin web
i am learning python with GAE and for interface use jquery so i want
I'm learning to use vlad the deployer and I've got a question. Since I'm
I'm learning to use raw sockets, and im trying to prase out the tcp
I am learning to use mysql for rails apps, and I finally have been
I am learning to use dependency injection with ninject. Most of the properties and
I'm interested in learning to use OpenGL and I had the idea of writing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.