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"; 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"; Source: https://ru.stackoverflow.com/questions/754132/
All Articles
string s = " qwerty\nasdfgh\nzxcvbn";- this? - Harry