admin on October 14th, 2008

Sometimes, we want to make a service available in different protocols so that clients could have an option to choose one of their favorite methods to consume the web services.
Here we are going to talk about how to make one WCF service available in RESTful POX(Plain Old XML as XML for short), JSON and [...]

Continue reading about WCF RESTful POX, JSON and SOAP Coexist

admin on October 2nd, 2008

Utilize a simple extension method to capitalize the first letter of a string.

public class Program
    {
        static void Main(string[] args)
        {
            string s = “toUpperFirstLetter”;
            // ToUpperFirstLetter is the extension method defined below
            [...]

Continue reading about C# To Upper Case First Letter of a String