Tagged Questions
27
votes
8answers
3k views
What to use: var or object name type?
this is a question that when programming I always wonder: What to use when we are writting code:
var myFiles = Directory.GetFiles(fullPath);
or
string[] myFiles = Directory.GetFiles(fullPath);
...
10
votes
4answers
3k views
Add property to anonymous type after creation
I use an anonymous object to pass my Html Attributes to some helper methods.
If the consumer didn't add an ID attribute, I want to add it in my helper method.
How can I add an attribute to this ...
10
votes
6answers
6k views
Create anonymous object by Reflection in C#
Is there any way to create C# 3.0 anonymous object via Reflection at runtime in .NET 3.5? I'd like to support them in my serialization scheme, so I need a way to manipulate them programmatically.
...
3
votes
2answers
608 views
Is there an easy way to merge C# anonymous objects
Let's say I have two anonymous objects like this:
var objA = new { test = "test", blah = "blah" };
var objB = new { foo = "foo", bar = "bar" };
I want to combine them to get:
new { test = "test", ...
0
votes
1answer
43 views
Is it possible to load a UserControl into an anonymous object, instead of just instantiating it?
Currently I'm generating UserControls as follows in an abstract base class so they are available for any other pages that implement the base class:
// doc is an XML file that may or may not contain a ...