Monday, January 14, 2008

Write a small application in C#, to output the class names in an assembly.

Tips:

1 – Load the assembly using reflection – Assembly.LoadFrom or something
2 – Get the types in the assembly once loaded
3 – If the type is a class (IsClass or something is there), output it.

No comments: