How to output new line in Visual Studio actions?
问题 I add a break point in Visual Studio 2015, with an action to output a string to Output Window . There will be an auto-added line break at the end. Problem is, my previous output message(which is not output by break point) has no line break. So I want to add new line character at the beginning of my string, to avoid it messing up with my previous message. I tried to add \n , but the \n outputs as it is, without being escaped . How to add a new line character in break point's action? 回答1: Here