blah blah blah is here! blah blah » Close

0
votes
0 answers

Objects with dynamic properties and WS

Hello, I am working on C#. Who I can publish an object with dinamic properties using a WS following the standard? Thanks

0
votes
1 answers

Does Activator.CreateInstance use reflection to load the instance of the class?

Rick_A
761

When calling Activator.CreateInstance, does this make use of reflection to load an instance of the class? reference: [url]http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx[/url]

1
votes
1 answers

using reflection, loop through each class, then hash its properties

Rick_A
761

I have a .dll that I want to generate a hash from, both at a class level and a global hash that represents the entire assembly. So the idea is that I will know if the assembly has changed, and I can then also figure out if a given class ...

0
votes
2 answers

How can I emit a call to a delegate whose type is unfinished at the time of the emit?

Hi everyone. I'm having trouble emitting a call to a delegate whose type is unfinished at the time of the emit. I'll elaborate: I'm trying to dynamically (i.e., with a [i]TypeBuilder[/i]) create the following class: [code] public MyClas ...

Feedback