There is no relevant diference. But assuming that String.Format internally uses a StringBuilder (you can see that with the Reflector tool), using directly StringBuilder.Append should be faster.
EDIT: Of course that use "+" operator is the worst option since it creates a new string instance for each string that you are concatenating.