这是我有的
DirectoryInfo di1 = new DirectoryInfo(@"c:\temp"); DirectoryInfo di2 = new DirectoryInfo(@"C:\TEMP"); if (di1.FullName.ToUpperInvariant() == di2.FullName.ToUpperInvariant()) { // they are the same ... }
谢谢.
比较字符串是你可以做的最好的.请注意,使用String.Compare(str1,str2,StringComparison.InvariantCultureIgnoreCase)有点快于您的方法.