Understanding reflection

Posted by sdmiller on Stack Overflow See other posts from Stack Overflow or by sdmiller
Published on 2010-04-24T18:35:19Z Indexed on 2010/04/24 18:43 UTC
Read the original article Hit count: 188

I recently started work at a new company and a .net web application we have is built using reflection. I have only been out of school for a year and haven't worked with this concept. After studying the code... it looks like there is a single backend interface of type object that has about 20 classes that inherit from it. lots of generic gets and sets

On the surface it looks like standard inheritance to me. I guess my question is, what makes this reflection? Is it because the interface is not strongly typed?

Thanks

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET