Recently, I've been playing around with SQL strings (yes, I know outdated a little). They can very lengthy at times. So how can Java help us? It can't:
1 2 3 |
String s = "Your random " + "string which goes through several lines" + "is staring you in the face"; |
Meanwhile in C#:
1 2 3 |
string s = @"Your random a string which goes through several lines is staring you in the face"; |