BloggingAbout.NET
Thoughts of developers

Browse Blog Posts by Tags

Showing related tags and posts for the Blogs application. See all tags in the site
Sorry, but there are no more tags available to filter with.
  • String concat..... The endless story

    Let's start with a simple question: Which of the options below is the best :) String.Concat(string1, string2, string3); String.Format({0}{1}{2}, string1, string2, string3); string1 + string2 + string3; StringBuilder sb = new StringBuilder(); sb.Append(string1); sb.Append(string2); sb.Append(string3);...
    Posted to Bob Gladon by Bob Gladon on 05-23-2005
    Filed under: Filed under: ,
Page 1 of 1 (1 items)
Copyright © 2003-2008 BloggingAbout.NET
Powered by Community Server (Commercial Edition), by Telligent Systems