Tagged Questions
The anonymous-objects tag has no wiki summary.
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.
...
6
votes
1answer
83 views
Is this a completely anonymous object… if so, how do you access it? [closed]
Possible Duplicate:
What does a script-Tag with src AND content mean?
I was just viewing this page, on how to implements Googles +1 button. When one implementation (parse explicit) showed, ...
3
votes
2answers
597 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", ...
1
vote
2answers
147 views
LINQ to XML: creating complex anonymous type
I've an xml file as follows:
<ProductGroup>
<Product id="4601A">
<name>Roses</name>
<section>Floral</section>
<price>46</price>
...
1
vote
2answers
1k views
How do I access the parent Object of an anonymous object in Java?
this.addTreeSelectionListener(new TreeSelectionListener() {
public void valueChanged(TreeSelectionEvent e) {
// How do I access the parent tree from here?
}
});
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 ...
0
votes
4answers
2k views
JavaScript check if anonymous object has a method
How can I check if an anonymous object that was created as such:
var myObj = {
prop1: 'no',
prop2: function () { return false; }
}
does indeed have a prop2 ...
-3
votes
1answer
214 views
How can I access the properties of an anonymous object?
$.post("test.php", { name: "John", time: "2pm" },
function(data){
alert("Data Loaded: " + data);
});
The object { name: "John", time: "2pm" } is anonymous. Normally, I would access the ...