Advertisement
Fhernd

Pruebaout.cs

Nov 10th, 2017
844
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. class Pruebaout
  2. {
  3.     static void Partir(string nombreCompleto, out string nombre, out string apellido)
  4.     {
  5.         int i = nombreCompleto.LastIndexOf(' ');
  6.         nombre = nombreCompleto.Substring(0, i);
  7.         apellido = nombreCompleto.Substring(i + 1);
  8.     }
  9.  
  10.     static void Main()
  11.     {
  12.         string a, b;
  13.         Partir("Juan Ortiz", out a, out b);
  14.         Console.WriteLine(a);               // Juan
  15.         Console.WriteLine(b);               // Ortiz
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement