I tried to find how to ignore escape characters like \n in a string (example string: Console.WriteLine("how\n are you\n");) I found how to ignore case sensitive mostly, but those are not escape characters like \n. (On phone I don't have an example of the whole code. Will update when I can reach laptop)
So, how do I ignore if disable escape characters in C#?
(EDIT) Thanks for the help, wasn't aware they were called escape commands. Yes I wanted to show them as characters, sorry for the vague question.