-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
23 lines (21 loc) · 1008 Bytes
/
Copy pathProgram.cs
File metadata and controls
23 lines (21 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// See https://aka.ms/new-console-template for more information
//int num1 = -24;
//int num2 = 5;
//System.Console.WriteLine(NumberMethods.NumMethods(num1,num2));//not void methods requires a "WriteLine" to work
//Strings.StringMethods("Augusto");//void methods can be directly called by using the syntax "Class.Method(params)"
//NumberMethods.WhileLoop(num2);
//NumberMethods.ForLoop(num2);
//Strings.StringMethods("Murillo");
//NumberMethods.NumArray(5);
//LinqMethods.LinqNumbers();
//LinqMethods.LinqStrings();
// Person.SetPerson("Jane", "Doe", new DateOnly(1970, 10, 10));
// Person.SetPersonWithPets("John", "Doe", new DateOnly(1960, 1, 1), "Cat");
// Person.SetPersonWithPets("Mark", "Doe", new DateOnly(1980, 3, 3), "Cat");
// NumberMethods.DiceRoll();
// NumberMethods.LargerValue);
//ConditionalMethods.IfElseGame();
//ConditionalMethods.MockFraudulentOrders();
//ConditionalMethods.GradeReport();
//NumberMethods.CoinFlip();
ConditionalMethods.MockAccessPermission();