[Solved] List of classes in an assembly C#

Here’s a little class I whipped up some weeks back when I was bored, this does what you’re asking of – if I understand the question correctly. Your applications must implement IPlugin, and must be dropped in a “Plugins” folder in the executing directory. public interface IPlugin { void Initialize(); } public class PluginLoader { … Read more