|
Project
|
ReSharper
|
|
Priority
|
Show-stopper |
|
Type
|
Bug |
|
Fix versions
|
2.5.1, 3.0 |
|
State
|
Fixed |
|
Assignee
|
Andrey Simanovsky |
|
Subsystem
|
Context actions |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build |
string smth = "";
if(DateTime.Now.Second == 0)
smth = null;
foreach(char c in smth)
{
}
string smth = "";
if(DateTime.Now.Second == 0)
smth = null;
if(smth != null) foreach(char c in smth)
{
}
string smth = "";
if(DateTime.Now.Second == 0)
smth = null;
if(smth != null)
{
foreach(char c in smth)
{
}
}
|
|