Visual Studio Tip: Line Break in String Properties
A colleague of mine asked me today "how do I line break my resource string? Enter doesn't work". This is when I realized that this thing wasn't as trivial as one may think...
So how do you that? In resources and string properties on the designer in Visual Studio, you can see only one line at a time and when you hit Enter, the value is set and you don't get the required line break.
All you have to do in order to have your line break, is hit Shift + Enter. This will break the line and put the cursor at the beginning of the next line.
Hope it helps,
Shay.