For example:
string element = 'a';
IEnumerable<string> list = new List<string>{ 'b', 'c', 'd' };
IEnumerable<string> singleList = ???; //singleList yields 'a', 'b', 'c', 'd'
|
|
|
|
|
|
|
I take it you can't just Well, you could use Otherwise, you could write your own extension method:
|
||||||||||||
|
|
|
You can roll your own:
And then use it:
|
||
|
|
|
|
No, there's no such built-in statment, statement, but it's trivial to implement such function:
You can even make it an extension method if C# version allows for. |
||
|
|
This would do it...
If you wanted the singleList to be a List then...
... works too. |
||
|
|
|
|
|||
|
|
Also:
|
||
|
|