If I do:
StringBuilder sb = new StringBuilder();
sb.append("somestring" + "hello" + "more strings" + "last one");
Is that the same as:
string s = "somestring";
s + "hello" + "more strings" + "last one";
Would it make using string builder pointless? Thereby needing to use:
StringBuilder sb = new StringBuilder();
sb.append("somestring");
sb.append("hello");
sb.append("more strings");
sb.append("last one");