Skip to content

Instantly share code, notes, and snippets.

@soheil-moonesi
Created February 1, 2024 12:57
Show Gist options
  • Select an option

  • Save soheil-moonesi/04e2a3d2a416531b2d9d3995a1656b58 to your computer and use it in GitHub Desktop.

Select an option

Save soheil-moonesi/04e2a3d2a416531b2d9d3995a1656b58 to your computer and use it in GitHub Desktop.
namespace virgol
{
class Program
{
static void Main()
{
UserMsg.sayGoodMorning();
}
}
}
---------------
create new class
---------------
namespace virgol
{
public class UserMsg
{
public static void sayGoodMorning()
{
Console.WriteLine("good morning");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment