Advertisement
Guest User

Untitled

a guest
Dec 29th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. string str = "hello";
  2. str += " world";
  3. str = str + "!!!";
  4. Console.WriteLine(str);
  5.  
  6. StringBuilder builder = new StringBuilder();
  7. builder.Append("Hello");
  8. builder.Append(" ");
  9. builder.Append("World");
  10. builder.Append("!!!");
  11.  
  12. Console.WriteLine(builder.ToString());
  13. Console.ReadLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement