views:

52

answers:

1

I've been programming in C# for a while now and would say I can use it and the .Net library fairly well. One huge gap in my knowledge though is how to use Reflection and Meta Programming with .Net/C#.

Can someone point me to some good resources on the subject and how to get started with it?

+1  A: 

To understand Reflection, you really need to understand the CLR. There is an excellent book called CLR via C#, which teaches CLR concepts using C#.

Stephen Cleary