Skip to content

Instantly share code, notes, and snippets.

View myozawlatt's full-sized avatar
🙏
Pray for Myanmar..

Myo Zaw Latt myozawlatt

🙏
Pray for Myanmar..
View GitHub Profile
@myozawlatt
myozawlatt / csharp9featuresample.cs
Created October 18, 2020 14:34
C# 9 feature sample
using static System.Console;
WriteLine("Welcome to C# 9");
Person mgmg = new("Mg Mg", 20);
Student myamya = new("Mya Mya", 11, 5);
Employee aungaung = new("Aung Aung", 25, 25000);
Teacher zawzaw = new("Zaw Zaw", 30, 50, "BEHS Hlaing");
Father uhla = new("U Hla", 61, new("Ko Ko", 11));
Father uaye = new("U Aye", 65, new Student("Ko Ko", 19, 12));