1
vote
2answers
61 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?
}
});
-2
votes
1answer
121 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 wo …
13
votes
9answers
613 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.Ge …
5
votes
6answers
2k 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 pr …
2
votes
2answers
304 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 att …
