How can we prepend strings with StringBuilder?

Using the insert method with the position parameter set to 0 would be the same as prepending (i.e. inserting at the beginning).

C# example : varStringBuilder.Insert(0, "someThing");

Java example : varStringBuilder.insert(0, "someThing");

It works both for C# and Java