Guest User

Untitled

a guest
Apr 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1.    static void Main(string[] args)
  2.         {
  3.             string Rota = "C-D-C";
  4.  
  5.             Array rrRota = Rota.Split(new char[]{'-'});
  6.            
  7.  
  8.             var result = rrRota.ToString();
  9.            
  10.             Console.WriteLine(result);
  11.             Console.ReadLine();
  12.         }
Add Comment
Please, Sign In to add comment