Created
February 1, 2024 12:57
-
-
Save soheil-moonesi/04e2a3d2a416531b2d9d3995a1656b58 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
| 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