Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

operator

Join multiple strings with single string
Friday, 23 December 2011 00:10
There are two ways to join multiple strings: using the + operator that the String class overloads, and using the StringBuilder class. The + operator is easy to use and makes for intuitive code, but it works in series; a new string is created for each use of the operator, so chaining multiple operators together is inefficient.

Example: 1

string two = "two";
string str = "one " + two + " three";
System.Console.WriteLine(str);


Example: 2

string two = "two";

System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("one ");
sb.Append(two);
sb.Append(" three");
System.Console.WriteLine(sb.ToString());

string str = sb.ToString();
System.Console.WriteLine(str);

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/l-AqaNAKW5I/14305

 
How to Perform Site-Specific Searches from Firefox's Address Bar [Firefox]
Thursday, 24 March 2011 11:20
We've long sung the praises of Google's site-specific searches, but unless you create a bookmark with a keyword, Firefox's awesomebar doesn't like the site: operator. Reader ri59 shows us how to make it work. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/7nDqzUePSrg/how-to-perform-site+specific-searches-from-firefoxs-address-bar

 
Maersk is Using Joomla
Sunday, 21 November 2010 19:00

Maersk is the largest container ship operator and supply vessel operator in the world. In 2009, it was the 106th largest company in the world according to Fortune Magazine.

They're using Joomla for their new training website: MaerskTraining.com

Maersk and Joomla

Read more: http://community.joomla.org/blogs/community/1332-maersk.html

 


Taxonomy by Zaragoza Online