Guest User

Untitled

a guest
Oct 18th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. static class MyString : String
  2. {
  3. static public string[] Split(this string s)
  4. {
  5. return Split(s, @"t");
  6. }
  7.  
  8. static public string[] Split(this string s, string d)
  9. {
  10. return Regex.Split(s, d);
  11. }
  12. }
  13.  
  14. string a;
  15. a.Split();
Add Comment
Please, Sign In to add comment