Skip to content

Instantly share code, notes, and snippets.

@jmarolf
Created November 2, 2017 01:21
Show Gist options
  • Save jmarolf/a8b0ff3ccf6a38c0b5c6c7281988b880 to your computer and use it in GitHub Desktop.
Save jmarolf/a8b0ff3ccf6a38c0b5c6c7281988b880 to your computer and use it in GitHub Desktop.
ConvertStringToSingleLine.cs
var a = "\n"; // token.ValueText.Contains("\n") == true
var b = @"\n"; // token.ValueText.Contains("\n") == false
var c = @"
"; // token.ValueText.Contains("\n") == true
var d = $@"\n";// token.ValueText.Contains("\n") == false
var e = $@"
"; // token.ValueText.Contains("\n") == false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment