Property | Value |
---|---|
Id | RCS1166 |
Category | Usage |
Severity | Info |
int x = 0;
IntPtr y = IntPtr.Zero
// ...
if (x == null) // RCS1166
{
}
if (y == null) // RCS1166
{
}
if (x == 0)
{
}
if (y == default)
{
}
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1166 |
Category | Usage |
Severity | Info |
int x = 0;
IntPtr y = IntPtr.Zero
// ...
if (x == null) // RCS1166
{
}
if (y == null) // RCS1166
{
}
if (x == 0)
{
}
if (y == default)
{
}
(Generated with DotMarkdown)