Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts

Saturday, January 9, 2010

C# interview questions and answers2

  1. What namespaces are necessary to create a localized application? System.Globalization, System.Resources.

C# interview questions and answers1

  1. What’s the advantage of using System.Text.StringBuilder over System.String? StringBuilder is more efficient in the cases, where a lot of manipulation is done to the text. Strings are immutable, so each time it’s being operated on, a new instance is created.