C# or Java: Prepend strings with StringBuilder?
问题 I know we can append strings using StringBuilder . Is there a way we can prepend strings (i.e. add strings in front of a string) using StringBuilder so we can keep the performance benefits that StringBuilder offers? 回答1: Using the insert method with the position parameter set to 0 would be the same as prepending (i.e. inserting at the beginning). An example is: varStringBuilder.insert(0, "someThing"); It works both for C# and Java 回答2: Prepending a String will usually require copying