Tagged Questions
The object-initializers tag has no wiki summary.
161
votes
21answers
78k views
What does your Objective-C singleton look like?
My singleton accessor method is merely:
static MyClass *gInstance = NULL;
+ (MyClass *)instance
{
@synchronized(self)
{
if (gInstance == NULL)
gInstance = [[self alloc] ...
15
votes
7answers
829 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
422 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
552 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, ...
10
votes
1answer
506 views
Code Contracts Vs. Object Initializers (.net 4.0)
At face value, it would seem that object initializers present a problem for .net 4.0 "code contracts", where normally the invariant should be established by the time the object constructor is ...
9
votes
1answer
582 views
How to change the formatting of the “Use Object Initializer” refactoring in Resharper?
When I refactor the following line:
Employee e = new Employee();
e.First = "Frank";
e.Last = "Rizzo";
using Resharper's "Use Object Initializer", I get the following:
Employee e = new Employee
...
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
300 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
348 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
2answers
146 views
Object context of 'this' within a jQuery event
Say I have the following defined in javascript:
com.company.long.namespace = {
actions: {
add: {
defaults: {
url: 'myurl/submit',
},
...
5
votes
3answers
143 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
568 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
133 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
101 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
150 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
208 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
2answers
1k views
Objective-C Multiple Initialisers
I have a simple question about creating multiple initialisers within an objective-c class.
Basically I have a class that represents a single row in my database (users). I currently have an initialiser ...
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
105 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
84 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
109 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
61 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
1answer
64 views
static initializer list for wrapper class
Is it possible to "pass" somehow a static initializer list at construction time to a container wrapper class that than in turn initializes its member?
struct bar {
bar(void * ptr): ptr(ptr) {}
...
2
votes
2answers
85 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
103 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
3answers
165 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
456 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
231 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
125 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
413 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 ...
2
votes
1answer
231 views
Order of operations using Object Initializer Syntax
Does the order in which I set properties using the object initializer syntax get executed in the exact same order?
For instance if I do this:
var s = new Person { FirstName = "Micah",
...
1
vote
5answers
99 views
What to do with basically useless init?
This is currently what I have for my init,
- (id)init
{
self = [super init];
if (self) {
self.url = [[NSURL alloc] init];
self.blurb = [[NSString alloc] init];
...
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
4answers
184 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)
...
1
vote
1answer
126 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, ...
1
vote
3answers
94 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
1answer
309 views
C++ undeclared identifier - object from .net dll class
I have a vb.net dll which I imported in an unmanaged c++ project.
I successfully created an object of the class object using:
CComPtr< IWSconnection > pIWSconnection;
...
1
vote
3answers
547 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
318 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
1answer
39 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
34 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
85 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
123 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
233 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
2answers
46 views
How can i get linq to sql to map my type when i use a parameterized constructor?
I know that L2S is not designed to map custom/POCO types to L2S-entity types without the object initializer syntax. But is there a back-book way to achieve this so that i can project into my POCO with ...
0
votes
3answers
109 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
64 views
Why is my IQueryable LINQtoObject being treated as LINQtoSQL and throwing no supported translation to SQL
I have a LINQ dbml class that I am wrapping in a POCO. I have built overloaded constructors that take the DBML class and init. the wrapper objects properties based on the dbml object passed in.
For ...