R# 9 C# - formatting "if" statements w/multiple conditions
I'm trying to configure R# to format this:
if((something != null) && (something != "something"))
{
...
}
to this:
if( (something != null) && (something != "something") )
{
...
}
But not have it format this:
if(something == "some value")
{
...
}
to this:
if( something == "some value" )
{
...
}
I've looked through the options, and I'm not seeing anything that would handle it.
Please sign in to leave a comment.