fork download
  1. using System;
  2.  
  3. class Pruebaout
  4. {
  5. static void Partir(string nombreCompleto, out string nombre, out string apellido)
  6. {
  7. int i = nombreCompleto.LastIndexOf(' ');
  8. nombre = nombreCompleto.Substring(0, i);
  9. apellido = nombreCompleto.Substring(i + 1);
  10. }
  11.  
  12. static void Main()
  13. {
  14. string a, b;
  15. Partir("Juan Ortiz", out a, out b);
  16. Console.WriteLine(a); // Juan
  17. Console.WriteLine(b); // Ortiz
  18. }
  19. }
Success #stdin #stdout 0.02s 33864KB
stdin
Standard input is empty
stdout
Juan
Ortiz