Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created December 20, 2013 20:31
Show Gist options
  • Save Boztown/8061023 to your computer and use it in GitHub Desktop.
Save Boztown/8061023 to your computer and use it in GitHub Desktop.
C# Split string (Argument type 'string' is not assignable to 'char')
string[] info = commandArgument.Split("|");
string[] info = commandArgument.Split('|');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment