Advertisement
Askor

NewHw21

Apr 15th, 2022
685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         string line = "You win some. You lose some.";
  8.         string[] subLines = line.Split(' ');
  9.  
  10.         foreach (var sub in subLines)
  11.         {
  12.             Console.WriteLine($"{sub}");
  13.         }
  14.  
  15.         Console.ReadKey();
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement