2.5.1 #解答 #如果比较的两个 String 引用的是同一个对象,那么就直接返回相等,不必再逐字符比较。一个例子:string s = "abcabc"; string p = s; Console.WriteLine(s.CompareTo(p));