3.6.txt
来自「《Microsoft Visual C# .NET 2003开发技巧大全》源代码」· 文本 代码 · 共 18 行
TXT
18 行
Listing 3.6 Performing a Case-Insensitive String Comparison
using System;
namespace _5_CaseComparison
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
string str1 = “This Is A String.”;
string str2 = “This is a string.”;
Console.WriteLine( “Case sensitive comparison of” +
“ str1 and str2 = {0}”, String.Compare( str1, str2 ));
Console.WriteLine( “Case insensitive comparison of” +
“ str1 and str2 = {0}”, String.Compare( str1, str2, true ));
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?