I use String.Compare like below sample
static void Main(string[] args)
    {
        int result = String.Compare("A", "a");
        Console.Write(result);
        Console.ReadKey();
    }
but , when run the program , result is 1 . but i except result will be -1 . i use vs 2013 .
 
     
    