mirror of
https://github.com/github/codeql.git
synced 2026-04-15 03:54:02 +02:00
62 lines
1.2 KiB
C#
62 lines
1.2 KiB
C#
class ConditionalAccess
|
|
{
|
|
string M1(int? i) => i?.ToString()?.ToLower();
|
|
|
|
int? M2(string s) => s?.Length;
|
|
|
|
int? M3(string s1, string s2) => (s1 ?? s2)?.Length;
|
|
|
|
int M4(string s) => s?.Length ?? 0;
|
|
|
|
int M5(string s)
|
|
{
|
|
if (s?.Length > 0)
|
|
return 0;
|
|
else
|
|
return 1;
|
|
}
|
|
|
|
string M6(string s1, string s2) => s1?.CommaJoinWith(s2);
|
|
|
|
void M7(int i)
|
|
{
|
|
var j = ((string)null)?.Length;
|
|
var s = ((int?)i)?.ToString();
|
|
s = ""?.CommaJoinWith(s);
|
|
}
|
|
|
|
ConditionalAccess Prop { get; set; }
|
|
|
|
void Out(out int i) => i = 0;
|
|
|
|
void M8(bool b, out int i)
|
|
{
|
|
i = 0;
|
|
Prop?.Out(out i);
|
|
}
|
|
|
|
string StringProp { get; set; }
|
|
int IntField;
|
|
string this[int index]
|
|
{
|
|
get { return null; }
|
|
set { }
|
|
}
|
|
|
|
void M9(ConditionalAccess ca)
|
|
{
|
|
ca?.IntField = 42;
|
|
ca?.StringProp = "Hello";
|
|
ca?[0] = "Set0";
|
|
ca?.Prop?.IntField = 84;
|
|
ca?.Prop?.StringProp = "World";
|
|
ca?.IntField -= 1;
|
|
ca?.StringProp += "!";
|
|
}
|
|
}
|
|
|
|
static class Ext
|
|
{
|
|
public static string CommaJoinWith(this string s1, string s2) => s1 + ", " + s2;
|
|
}
|