Tagged Questions

5
votes
4answers
1k views

Instantiate Generic Type in C# class

Pretty basic question in C#, class Data<T> { T obj; public Data() { // Allocate to obj from T here // Some Activator.CreateInstance() method ? obj = ??? } ...
3
votes
9answers
144 views

Create an object in the constructor or at top of the class

which declaration/instantiation is better and WHY ? public class MainWindow { private Test _test; public MainWindow() { _test = new Test(); } } OR public class MainWindow { ...
2
votes
3answers
45 views

Creating an array of instantiated class objects

So I have a class (myClass) that I've created in my C# application. When working with arrays of this class, I have been thinking that it's rather annoying having to write a loop to fill an array of ...
2
votes
5answers
283 views

Why is it possible to instantiate a struct without the new keyword?

Why are we not forced to instantiate a struct, like when using a class?
1
vote
2answers
518 views

How to pass a list of unknown objects of type custom-class containing some properties to method?

I am making a databasehelper class with methods to access a SQLCE database. I want to use the same method to read row(s) using different classes containing properties that match the fields in the ...
1
vote
1answer
658 views

adding stock data to amibroker using c#

I have had a hard time getting and answer to this and i would really , really appreciate some help on this. i have been on this for over 2 weeks without headway. i want to use c# to add a line of ...
1
vote
2answers
140 views

Cost of multiple instantiations

While working in a project today, I came across the following code: pcShowByCategory.Controls.Add(new LiteralControl("<div id='lblDivP'>")); pcShowByCategory.Controls.Add(new ...
1
vote
2answers
604 views

C# instantiate in foreach loop? [closed]

Possible Duplicate: Loops and Garbage Collection foreach (ObjectTypeA typea in ObjectTypeACollection) { var objectTypeAProcessor= new objectTypeAProcessor(); ...
0
votes
2answers
59 views

How can I use 1 notifyIcon between multiple forms?

I have a notifyIcon added to my main form of a project. I have other forms in the project that I want to be able to use the notifyIcon though which is proving difficult. What would be the best way to ...
0
votes
0answers
90 views

Force cast imported class in C#

I have an imported assembly in my project, and I want to pass an object that is defined within the imported assembly. I want to manually construct each member of this object, but its members are ...
0
votes
1answer
286 views

Instantiate a web user control in a class in app_code

I am writing a class called Evaluatieform that works with web user controls, their events and eventually adds them to a panel so the web page only needs to instantiate the Evaluatieform class and call ...
0
votes
2answers
159 views

Create an instance of an ASMX stub object from a real object

I have an ASMX web service that exposes several objects. I have a real instance of that object, and I would like to instantiate a stub object that is populated from it. Clearly there is such ...