What is the fastest way to concat strings in ASP.NET?

Options
- Code using Substring method of the string object
- Code using Append method of the StringBuilder object
- Code using Concat method of the String object
- Code using plus sign operator to concatenate the strings


CORRECT ANSWER : Code using Append method of the StringBuilder object

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement