Skip to content

Instantly share code, notes, and snippets.

@nanwang2016
Created November 11, 2020 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanwang2016/6d102b7e73d6b7050e091f6f14ee30d8 to your computer and use it in GitHub Desktop.
Save nanwang2016/6d102b7e73d6b7050e091f6f14ee30d8 to your computer and use it in GitHub Desktop.
using System;
using Greeting;
namespace Greeting
{
public class MorningGreet
{
public void GoodMorning()
{
Console.WriteLine($"Good Morning");
}
}
}
public class TestNamespace
{
public static void Main()
{
MorningGreet morning = new MorningGreet();
morning.GoodMorning;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment