How to initialize string in several lines? Somehow I did, but I can not remember)) It must be two quotes, something like this:

string s = " qwerty asdfgh zxcvbn"; 
  • string s = " qwerty\nasdfgh\nzxcvbn"; - this? - Harry
  • string s = R "(qwerty asdfgh zxcvbn)"; - sitev_ru
  • I found everything through R "( - sitev_ru
  • Could be so. But very ugly in terms of formatting :) - Harry

0