Tagged Questions

15
votes
7answers
831 views

Is this a bug in the C# 4.0 compiler?

This code compiles successfully, but I think it should fail to compile. Also, when you run it you get a NullReferenceException. The missing code is the "new Bar" in the initialization of the Bar ...
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 }, ...
10
votes
3answers
584 views

c# object initializer complexity. best practice

I was too excited when object initializer appeared in C#. MyClass a = new MyClass(); a.Field1 = Value1; a.Field2 = Value2; can be rewritten shorter: MyClass a = new MyClass { Field1 = Value1, ...
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); ...
7
votes
6answers
9k views

Can you Instantiate an Object Instance from JSON in .NET?

Since Object Initializers are very similar to JSON, and now there are Anonymous Types in .NET. It would be cool to be able to take a string, such as JSON, and create an Anonymous Object that ...
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 = { ...
6
votes
6answers
352 views

What am I doing wrong with C# object initializers?

When i initialize an object using the new object initializers in C# I cannot use one of the properties within the class to perform a further action and I do not know why. My example code: Person ...
5
votes
3answers
147 views

Conceptual reason of the 'A field initializer cannot reference the non-static field, method, or property' CS0236 Error

C# does not allow an instance field initializer to reference another field. For instance this code is not valid : class A { string s1 = ""; string s2 = s1; } because "s2" references "s1". But ...
5
votes
2answers
1k views

c# constructors vs auto-properties and object initializers

I have used auto properties a lot but I have gone more and more away from that setting up classes with readonly backing fields initialized in the constructor. I remove all setters and only add the ...
5
votes
3answers
578 views

C# object initializer wanting to use wrong Add method

I have the following class hierarchy: public class Row : ICloneable, IComparable, IEquatable<Row>, IStringIndexable, IDictionary<string, string>, ...
4
votes
3answers
143 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
105 views

Is an object constructed if an initializer throws?

I was reading This Article over on Jag Reeghal's blog and It seemed to me that what he was suggesting was really not the same thing as using an object initializer. Then I realized that I didn't ...
4
votes
3answers
165 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
5answers
214 views

C#: Object having two constructors: how to limit which properties are set together?

Say you have a Price object that accepts either an (int quantity, decimal price) or a string containing "4/$3.99". Is there a way to limit which properties can be set together? Feel free to correct ...
4
votes
3answers
115 views

Is it possible to use Object Initializers on a bool?

Is it possible to do the following (e.g. initialize bool array and set all elements to true) in one line using object initializers? int weeks = 5; bool[] weekSelected = new bool[weeks]; for (int i = ...
4
votes
1answer
202 views

What is the name of this C# syntax?

In C#, you can do something like this: SomeClass someClass = new SomeClass () { SomeProperty = someValue }; What is this syntax called?
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 ...
3
votes
3answers
96 views

Object initializers in C# cause compile-time error

When compiling some C# code, I get the error: A new expression requires () or [] after type My code is as follows: request.AddExtension(new ClaimsRequest { Country = ...
3
votes
3answers
117 views

Can I use a collection initializer for an Attribute?

Can an attribute in C# be used with a collection initializer? For example, I'd like to do something like the following: [DictionaryAttribute(){{"Key", "Value"}, {"Key", "Value"}}] public class Foo { ...
2
votes
3answers
78 views

How to write a Custom DynamicObject class that supports object initializers

In the documentation for DynamicObject, there is an example of a DynamicDictionary that allows you to work with a dictionary as if it's a class with properties. Here is the class (modified slightly ...
2
votes
2answers
90 views

Object initializers in a LINQ query - is it possible to reuse calculated data?

I'm using a linq query which looks (after some simplification) something like the following: List<UserExams> listUserExams = GetUserExams(); var examData = from userExam in listUserExams ...
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
4answers
188 views

Ninject with Object Initializers and LINQ

I'm new to Ninject so what I'm trying may not even be possible but I wanted to ask. I free-handed the below so there may be typos. Let's say I have an interface: public interface IPerson { ...
2
votes
3answers
487 views

Array of dynamic | ExpandoObject | with a compressed initialize syntax

Im trying to use DynamicObject in c#, and I needed an array of dynamic: var d = new dynamic[]; which works fine. EDIT : See ExpandoObject below. But I also like to fill that array with some data ...
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, ...
2
votes
4answers
194 views

C# Object Initialiser - Reference to the new instance

Can I somehow get a reference to the instance I am creating using object initialiser var x = new TestClass { Id = 1, SomeProperty = SomeMethod(this) ...
2
votes
4answers
126 views

Object initializers and Contructors

I am trying to use Object initializers to set the properties of a class and then access them within the constructor of the class. The problem is that the properties do not seem to be set until after ...
2
votes
1answer
136 views

CodeDom and collection initializers

Is there a way to generate a dictionary initializer using the C# CodeDom? Are those supported at all? I would like to have: private IDictionary<string, string> map = new Dictionary<string, ...
2
votes
1answer
419 views

passing css class name to asp.mvc view helper

In ASP.NET MVC view helper, you can do something like <%= Html.ActionLink("click me", "DoSomething", null, new { someAttribute = "a value" } ) %> which will produce the following HTML <a ...
1
vote
1answer
44 views

Inline Definition and Declaration

Ok, im sure im mis-wording the concept but here it is anyways. I know in CSharp you can do el.AppendChild(new UISize(file, "TSize") { CX = 95, CY = 20 }); which declares a temporary bucket ...
1
vote
1answer
47 views

compiler accepts almost-object-initializer that throws NullReferenceException [closed]

Possible Duplicate: Initializer syntax Short code sample to demonstrate (VS2010 SP1, 64-bit Win7): class A { public string Name { get; set; } } class B { public A a { get; set; } ...
1
vote
3answers
97 views

Object Initializer and Dynamically specifying properties

With an object initializer, is it possible to optionally include setting of property? For example: Request request = new Request { Property1 = something1, if(something) Property2 = ...
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 = ...
1
vote
5answers
336 views

Why I cannot use Object Initializers in ASP.NET 2.0?

Why I can use Object Initializers in Visual Studio 2008 Windows projects, etc targeted to .NET 2.0 but cannot - in ASP.NET projects targeted to .NET 2.0 ? I understand that this is C# 3.0 features, ...
0
votes
4answers
60 views

Using a KeyValuePair<> as Property vs. Separate Class vs. something else

What is the proper way to show "Admin Tables" in my "Business Objects"? I have the following on my Address object. public class Address { public int AddressID { get; set; } public ...
0
votes
1answer
58 views

using object initializer generates CA 2000 warning

Following code generates a CA2000 warning: Myclass myclass = null; try { myclass = new Myclass { Name = "a name" }; } finally { if (myclass != null) { myclass.Dispose(); } } i ...
0
votes
3answers
40 views

initialize the proprty of a class, which is of another type, by extension method and object initializers

. . List<DailyEntry> entries = null; using (SqlCeDataReader rdr = cmd.ExecuteReader()) { entries = rdr.Select(r => new DailyEntry { ID = int.Parse(r["Col_ID"].ToString()), ...
0
votes
2answers
89 views

“In constructors and initializers, only property or field parameter bindings are supported” when using object initializer syntax

I'm getting a very odd problem in Entity Framework query that I literally spent hours on. When a query is executed, I get an exception: In constructors and initializers, only property or field ...
0
votes
1answer
125 views

Accessing property read value inside c# object initializer

I would like to reference a property on an object within an object initializer. The problem is that the variable does not yet exist, so I cannot reference it like normal (object.method). I do not know ...
0
votes
1answer
259 views

C# Object Initializers and ConstructorInfo

Can anyone point me towards a solution for the following? I am trying to replicate a property attribute that uses Object Initializers by using the CustomAttributeBuilder; ie. [Display(Order = 0, ...
0
votes
3answers
113 views

How to create an extensible API, and still use object initializer syntax?

I have a class library that wraps the command line client for Mercurial. My intention is to implement support for all the built-in commands, but in addition to those, there's a ton of extensions out ...
0
votes
1answer
215 views

Conversion of C# to VB.net List<T> has error

I'm trying to convert some C# code to VB but I’m getting an error. What would be the correct VB syntax? C# return new List<string> {"First Name", "Last Name", "First & Last Name", ...
0
votes
3answers
1k views

Linq IEnumerable Select Question - Can I do all of this inside my select?

I had a quick question. Can I do all of this logic inside the select statement? var entries = atisDAO.GetPME(xl, null); response.Data.Detectors = new ...
0
votes
3answers
69 views

Difference between Initializer or Static Initiliazer?

When I was working with XmlDOM in Asp.Net, there was a pattern like this : `XmlReader reader = XmlReader.Create()". And then I encountered the same pattern several times later. I like to know what's ...
-1
votes
6answers
75 views

How to tell when object initializer is done

I have various derived objects that I would like the user to be able to use object initializers with. I have an "Initializing" property that I want to be true as those fields are being set and then I ...