Created
March 26, 2017 18:25
-
-
Save Hoffs/5fbd9cebf7bb1c14b4d0575d048ad006 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# App | |
using System; | |
using ClassLibrary1; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
LibClass c = new LibClass(); | |
c.Test(); | |
Console.WriteLine("Hello World!"); | |
} | |
} | |
} | |
# Lib | |
using System; | |
namespace ClassLibrary1 | |
{ | |
public class LibClass | |
{ | |
public void Test() | |
{ | |
Console.WriteLine("exd"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment