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
Post a Comment