blah blah blah is here! blah blah » Close

1
votes
1 answers

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

Rick_A
419

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