Advertisement
scottgalPastes

Split String Helper

Mar 9th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.18 KB | None | 0 0
  1.   public static string[] Split(this string inputString, string splitString)
  2.         {
  3.            return inputString.Split(new[] { splitString }, StringSplitOptions.None);
  4.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement