I want to initialize WebControl
objects, inline, but for some fields this is a little bit tricky. For instance when I try to initialize the Attributes
property of a TextBox
object like this:
using System.Web.UI.WebControls;
Panel panel = new Panel() { Controls = { new TextBox() { Attributes = { { "key", "value" } } } } };
I get the error:
Cannot initialize type 'AttributeCollection' with a collection initializer because it does not implement 'System.Collections.IEnumerable'
Any idea how could inline initialization work in this case ?
You can do this but if you use C#6. This is called index initialization so try the following code but as I said this should works fine in Visual Studio 2015 and C#6:
The old collection initializers (Prior to C#6) only works with types that implement
IEnumerable<T>
and have anAdd
method. But now any type with an indexer will allow initialization via this syntax.