Tagged Questions

13
votes
2answers
434 views

Initializer syntax

I like the C# 3 initializer syntax and use it a lot, but today while looking in Reflector, the following came up: var binding = new WSHttpBinding { ReaderQuotas = { MaxArrayLength = 100000 }, ...
7
votes
3answers
2k views

Initial capacity of collection types, i.e. Dictionary, List

Certain collection types in .Net have an optional "Initial Capacity" constructor parameter. i.e. Dictionary<string, string> something = new Dictionary<string,string>(20); ...
6
votes
3answers
305 views

covariant object initializers?

say that I have an class that has a property that is a dictionary<string,bool>, using a object initializer I can use this syntax (which I think looks pretty clean): new MyClass() { Table = { ...
4
votes
3answers
144 views

Combining List initializer and object initializer

Is is possible to combine a List initializer and object initializer at the same time? Given the following class definition: class MyList : List<int> { public string Text { get; set; } } // ...
4
votes
3answers
166 views

How to debug object initializer code?

Is there a way to step by step debug the object initializer code in Visual Studio? Example: return new Veranstaltung() { ID = tblVeranstaltung.VeranstaltungsID, ...
4
votes
3answers
106 views

C# 3.0 Object Initialation - Is there notification that the object is being initialized?

We have several domain objects which need to support both read-only and read-write modes; they currently have a bool Locked property for this--when Locked attempts to alter properties on the object ...
2
votes
4answers
109 views

Is this code setting values via accessors soon after object creation

var dlg = new Microsoft.Win32.OpenFileDialog { Title = "Select configuration", DefaultExt = ".xml", Filter = "XML-file (.xml)|*.xml", CheckFileExists = true }; I got the above piece ...
2
votes
2answers
241 views

Assigning events in object initializer

Why isn't it possible to assign events along with properties in object initializers in C#? It seems to be so natural to do so. var myObject = new MyClass() { Property = value, ...
1
vote
3answers
562 views

Object Initialization and “Named Constructor Idiom”

Ok. So I have a list of values, and I'd like to do something like the following: MyObjectValues .Select(currentItems=>new MyType() { Parameter1 = currentItems.Value1, Parameter2 = ...