pause at 2:00

This commit is contained in:
2026-01-12 22:01:33 +01:00
parent b3f8a9aed9
commit 12e73411bf
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# Methods
```C#
singHappyBirthday();
static void singHappyBirthday(){
Console.WriteLine("Happy birthday to you")
}
```
## arguments
```C#
String name = "mrsh"
int age = 30;
singHappyBirthday(name, age);
static void singHappyBirthday(String namem int age){
Console.WriteLine("Happy birthday to you" + name)
Console.WriteLine("you are " + age + "years old")
}
```