зеркало из https://github.com/github/codeql.git
C#: Add null guard test involving `GetType()`
This commit is contained in:
Родитель
d776d9f903
Коммит
87bb4a1d56
|
@ -262,4 +262,12 @@ public class Guards
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void M22(object o1, object o2)
|
||||||
|
{
|
||||||
|
if (o1?.GetType() == o2.GetType())
|
||||||
|
o1.ToString(); // null guarded
|
||||||
|
if (o1?.GetType() == o2?.GetType())
|
||||||
|
o1.ToString(); // not null guarded
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче