?? icomparer_simple.aspx
字號(hào):
<%@Page Language="C#"%>
<h3>IComparer</h3>
<%
string s1 = "richard";
string s2 = "anderson";
IComparable c1;
c1 = (IComparable) s1;
if ( c1.CompareTo(s2) != 0 )
Response.Write("strings are different");
if ( c1.CompareTo(s2) < 0 )
Response.Write("string 1 is less than string 2");
if ( c1.CompareTo(s2) > 0 )
Response.Write("string 1 is greater than string 2");
%>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -