C# language feature:
applies to
benefit
how to use
, enclosed in ()important note
System.ValueTuple to your project.example:
(string firstname, string lastname) GetPersonsName()
{
return (firstname: "Jeff", lastname: "Doe");
}