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

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -