Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace wtf.windegger.addinframework
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. AddinLoader loader = new AddinLoader();
  13. loader.LoadAddinsFromFile("Addins.dll");
  14. foreach (Addin i in loader.Addins)
  15. {
  16. i.Instance.WriteSomething();
  17. }
  18. Console.ReadLine();
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement