8cb7d04924
Former-commit-id: 925376e1db46149d14f7949fcd7b08805ea8aba9
14 lines
245 B
C#
14 lines
245 B
C#
class M
|
|
{
|
|
public static void Main ()
|
|
{
|
|
string s = null;
|
|
s?.CompareTo ("xx").CompareTo(s?.EndsWith ("x")).GetHashCode ();
|
|
|
|
string s1 = "abcd";
|
|
string s2 = null;
|
|
|
|
var idx = s1.Substring(1)[s2?.GetHashCode () ?? 0].GetHashCode ();
|
|
}
|
|
}
|