Say I have some code like below:
public class Person
{
public string Name, Job;
public int Age;
public Person(string name, int age, string job)
{
Name = name;
Age = age;
Job = job;
}
}
Is there a shorter way to do this instead of doing "[Variable] = [Argument]
" for every argument?