Skip to content

Instantly share code, notes, and snippets.

@pyxze
Last active January 4, 2017 18:57
Show Gist options
  • Save pyxze/740e97c2647c43a001c6 to your computer and use it in GitHub Desktop.
Save pyxze/740e97c2647c43a001c6 to your computer and use it in GitHub Desktop.
C# Method to Get Lines from Clipboard
public static string[] GetLinesFromClipboard()
{
return Clipboard.GetText().Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment