1
2
3
4
5
6
7
8
9
Person me = new Person
{
Name = "Luke Else",
Age = ,
Title = "Software Engineer / Student",
}
1
2
3
4
5
6
7
8
9
internal class Person
{ //Hover to flip
public string Name { get; init; }
internal int Age { get; set; }
internal string Title { get; set; }
public string EMail { get; set; }
public string Website { get; set; }
}