C# Named Arguments
Benannte Argumente
Es ist auch möglich, Argumente mit der Syntax key: value
zu senden.
Auf diese Weise spielt die Reihenfolge der Argumente keine Rolle:
Beispiel
static void MyMethod(string child1, string child2, string child3)
{
Console.WriteLine("The youngest child is: " + child3);
}
static void Main(string[] args)
{
MyMethod(child3: "John", child1: "Liam", child2: "Liam");
}
// The youngest child is: John