I have actually no idea of what this is called in c#. But i want to add the functionallity to my class to add multiple items at the same time.
myObj.AddItem(mItem).AddItem(mItem2).AddItem(mItem3);
|
I have actually no idea of what this is called in c#. But i want to add the functionallity to my class to add multiple items at the same time.
| ||||
|
feedback
|
|
The technique you mention is called chainable methods. It is commonly used when creating DSLs or fluent interfaces in C#. The typical pattern is to have your AddItem() method return an instance of the class (or interface) it is part of. This allows subsequent calls to be chained to it.
Some alternatives to method chaining, for adding items to a collection, include: Using the
Providing an overload of type IEnumerable or IEnumerable so that multiple items can be passed together to your collection class.
Use .NET 3.5 collection initializer syntax. You class must provide a single parameter
| |||||||
feedback
|
|
Use this trick:
It returns the current instance which will allow you to chain method calls (thus adding multiple objects "at the same time". | |||||||||||
feedback
|
|
Others have answered in terms of straight method chaining, but if you're using C# 3.0 you might be interested in collection initializers... they're only available when you make a constructor call, and only if your method has appropriate
| |||
|
feedback
|
|
Why don't you use the
| ||||
|
feedback
|
|
How about
or
You can use them like this
This is not method chaining, but it adds multiple items to your object in one call. | |||
|
feedback
|
A fluent API;
| |||
|
feedback
|
|
Something like this?
| |||
|
feedback
|
|
If your item is acting as a list, you may want to implement an interface like iList or iEnumerable / iEnumerable. Regardless, the key to chaining calls like you want to is returning the object you want.
| |||
|
feedback
|