Advertisement
Montagne94

Split

Apr 15th, 2022
768
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. public class HelloWorld
  4. {
  5.     private static string _value = "Домашняя работы от школы разработки игр ЯЮниор";
  6.    
  7.     public static void Main(string[] args)
  8.     {
  9.         string[] result = _value.Split(' ');
  10.         ShowResult(result);
  11.     }
  12.    
  13.     private static void ShowResult(string[] value)
  14.     {
  15.         foreach (var phrases in value)
  16.         {
  17.             Console.WriteLine(phrases);
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement