winforms - Get list of C# Classes Names? -


i implementing syntax highlighter using c# windows forms, , list of names, know should done manually, adding keywords , names wondering if there function in c# me this.

you have use reflection names of classes in dll.

// using reflection information assembly: system.reflection.assembly o = system.reflection.assembly.load("mscorlib.dll"); var types = o.gettypes(); 

Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -