Skip to content

Instantly share code, notes, and snippets.

@Hoffs
Created March 26, 2017 18:25
Show Gist options
  • Save Hoffs/5fbd9cebf7bb1c14b4d0575d048ad006 to your computer and use it in GitHub Desktop.
Save Hoffs/5fbd9cebf7bb1c14b4d0575d048ad006 to your computer and use it in GitHub Desktop.
# 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