Tagged Questions

2
votes
4answers
4k views

How to do dynamic object creation and method invocation in .NET 3.5

How does the code looks that would create an object of class: string myClass = "MyClass"; Of the above type, and then call string myMethod = "MyMethod"; On that object?
0
votes
1answer
101 views

Getting “raw” xml from webservice

I'm trying to to generate web service proxy class using ServiceContractGenerator. But the problem is that i want to recieve a "raw" xml from webservice (it may be a string or XmlNode, doesnt matter). ...
0
votes
2answers
125 views

Weird problem with dynamic method invocation

this time, I'm facing a really weird problem. I've the following code: $xml = simplexml_load_file($this->interception_file); foreach($xml->children() as $class) { $path = ...