The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
77 views

visual basic equivalent of “rectangle a=new a() { width=1; height=2; }”

rectangle a=new a() { width=1; height=2; } I used to construct objects like this, it there a similar way to do this in visual basic? I'm sorry I couldn't really label the technique.
1
vote
2answers
93 views

C# Object Initializer : Set Property from another one

I have the following object where in my constructor I add a new Guid as the Id. public class MyObject { public MyObject() { Id = Guid.NewGuid().ToString(); } public String Id { get; set; ...
1
vote
1answer
50 views

How to assign a same value to different properties using Object Initializer

I try to assign a value to two different properties in object initializer and failed. In below code i try to assign Expand and Select properies to true. But i got the error 'The name Select ...
3
votes
2answers
116 views

Are class initializers possible in C#?

In C# you have object initializers to initialize fields of objects at creation time without using a constructor. Now I'm wondering if there is an equivalent to classes which means that you can ...
0
votes
2answers
30 views

How to initialize an property value depending on another propertey

I have the following code: var workOrderList = new List<WorkOrder>( from index in Enumerable.Range(1, orders.Length) select new WorkOrder { ...
3
votes
5answers
156 views

Removing the work from __init__ to aid unit testing

The key to this question is aiding unit-testing. If I have a busy __init__ (i.e. __init__ that does complex initialization), I cannot simply instantiate an object of a class, but I need to mock/stub ...
0
votes
1answer
113 views

Difference between initializing with new operator and intializing with literal in Dart

In Dart, what is the difference between initializing a List with new operator and initalizing with literal? case 1: List<int> args = new List<int>(2); args[0] = 1; args[1] = 2; case 2: ...
1
vote
3answers
124 views

What is the behavior when there are more initializers than array size?

I would like to know what happens when there are more initializers than array size, e.g. : int t[3] = { 1, 2, 3, 4 }; Of course, my compiler warns it. I expected undefined behavior, but I didn't ...
2
votes
1answer
87 views

unable to evaluate viewState against Null

This method I am using to fill the data source for a grid view, but for when getnew is false, it won't return any value , just returns a list with a single null value in it. private List<T> ...
1
vote
3answers
234 views

Accessing properties from object initializer

I have the following Person class class Person { public string FirstName { get; set; } public string LastName { get; set; } public string FullName { get { return FirstName + " ...
-2
votes
1answer
74 views

Objects re-initalization in c#

Is it possible/considered 'good practice' to re-use objects in c#. For example:       Say you have a class called Anima and create an oject of type animal called monkey: ...
2
votes
3answers
101 views

How to reference another property value in a C# member initializer?

In VB, the following is a valid object initializer in which one member intializer references the value of another member that has previously been initialized. new MyObject() with {.Property1="x", ...
3
votes
2answers
317 views

Setting a private setter using an object initializer

Why is it possible to use an object initializer to set a private set auto property, when the initializer is called from within the class which owns the auto property? I have included two class as an ...
2
votes
3answers
205 views

How does C# set a read-only property on anonymous object initialization

In C#, object initializers can set public non-read-only fields and properties. However, with anonymous types, the properties are read-only. So how does .NET set them on object initialization?
0
votes
5answers
89 views

Avoid Duplicating Object Initializer Value

I have a number of objects in my project which have fields that will contain matching values when they're initialized - see the code snippet below for an example, in particular the AddedDateTime and ...
1
vote
2answers
202 views

Non static global object vs global pointer to dynamic object

Got an unexplained behaviour with the following: Case 1: a.cpp compiled as a .dll library and used in main() of main.cpp Bar b; //constr Bar::Bar(){ //... initialize members } //private ...
2
votes
3answers
150 views

Initializing array of structs within an array of structs

Given the following code: struct BufferPair { ByteBuffer _a; ByteBuffer _b; bool _c; }; struct TestData { MyClass _myClass; BufferPair _data[]; }; I'm trying to initialize an ...
1
vote
2answers
309 views

Using VB.NET object initializers in a factory pattern

I have written a base class from which I wish to derive several child classes (in this case Windows Form classes), and I'm using a Factory pattern in order to maintain a collection of the child ...
1
vote
3answers
1k views

How to reinitialize an array in pure C exactly ( not C++ )?

How can I reinitialize an array in pure C? How can I create it , to reinitialize it in forward step in my code? Must I define through a pointer it: *int data[] or can just code: int data[] = { }; And ...
2
votes
2answers
2k views

Invalid initializer member declarator when projecting into complex types

I was initializing the object in the code below using simple properties but then refactored elsewhere such that DispatchedDocumentDate became DispatchedPhase.DocumentDate. I did this because there is ...
0
votes
1answer
104 views

How to I pass the object itself (like how we can do in C#) in mootools?

I would like to know how to pass self to an other object in mootools, I am trying to build classes based on mootools class declaration, but i am noticing i cannot send the object itself using this ...
0
votes
4answers
181 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 ...
1
vote
1answer
596 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
votes
6answers
176 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 ...
0
votes
1answer
245 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 ...
4
votes
3answers
310 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
381 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 ...
0
votes
3answers
80 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()), ...
1
vote
5answers
185 views

What to do with 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
81 views

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

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; } ...
2
votes
1answer
143 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) {} ...
3
votes
3answers
508 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 { ...
0
votes
2answers
368 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 ...
2
votes
2answers
242 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 ...
7
votes
3answers
870 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; } } // ...
2
votes
4answers
225 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 ...
5
votes
2answers
1k 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', }, ...
0
votes
1answer
257 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
889 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, ...
5
votes
4answers
144 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 ...
0
votes
2answers
84 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 ...
7
votes
4answers
409 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, ...
2
votes
4answers
336 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 { ...
3
votes
3answers
2k 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 ...
6
votes
3answers
365 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 = { ...
0
votes
3answers
198 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 ...
6
votes
3answers
279 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 ...
2
votes
2answers
642 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, ...
15
votes
7answers
881 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 ...
0
votes
1answer
87 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 ...

1 2