Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'ClassLibrary1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
  2. at ConsoleApp1.Program.Main(String[] args)
  3.  
  4. # App
  5. using System;
  6. using ClassLibrary1;
  7.  
  8. namespace ConsoleApp1
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. LibClass c = new LibClass();
  15. c.Test();
  16. Console.WriteLine("Hello World!");
  17. }
  18. }
  19. }
  20.  
  21. # Lib
  22.  
  23. using System;
  24.  
  25. namespace ClassLibrary1
  26. {
  27. public class LibClass
  28. {
  29. public void Test()
  30. {
  31. Console.WriteLine("exd");
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement