Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [StartCode]
- using System;
- namespace ConsoleApp14
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string[] words = "Привет новый мир!".Split(' ');
- foreach(string word in words)
- {
- Console.WriteLine(word);
- }
- }
- }
- }
- [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment