MEJOR SITIO PARA DESARROLLADORES WEB
Lenguaje C#. W3Schools lecciones en español

Ua En De

C# Named Arguments


Argumentos con nombre

También es posible enviar argumentos con la sintaxis clave: valor.

De esta manera, el orden de los argumentos no importa:

Ejemplo

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

Inténtalo tú mismo »