Is there a way to initialize a NVC using C# collection initializer syntax:
NameValueCollection nvc = new NameValueCollection() { ("a", "1"), ("b", "2") };
Thanks
|
Is there a way to initialize a NVC using C# collection initializer syntax:
Thanks |
|||
|
|
|
Yes; just uses braces instead of parentheses.
You can call |
|||||||||
|
|
You can use collection initializers with everything that has
|
|||||||||||||
|