S1 = New string ("Sony"); // Created string object
S1.Equals ("Sony"); // Return true
S1 == "Sony" // Return False
//in case
S1 = "sony";
S1 == "Sony" // Return true