Initial commit

This commit is contained in:
2018-02-22 23:01:00 +01:00
commit 8a754080ba
378 changed files with 2723 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
class StringSplit {
public static void Main() {
string listOfBeers = "Guinness, Vesper Ale, Dales Pale Ale, Snowcat, Punk IPA";
char[] separators = new char[] { ',' };
string[] beersArr = listOfBeers.Split(separators);
foreach (var item in beersArr) {
Console.WriteLine(item);
}
}
}