vote up 1 vote down star
1

I need to change this to be a suggestion and not a warning, but I cannot find the setting to do so.

Where is it?

This is the code that needs to pass (not a compilier warning). It is saying that transaction is a local variable that is not used, but this is valid.

using (TransactionScope transaction = new TransactionScope())
{
    // ...
}
flag

2 Answers

vote up 4 vote down check

If you don't need transaction variable, you can replace it with using (new TransactionScope()) { }

link|flag
vote up 1 vote down

I don't think ReSharper lets you turn things into a suggestion that will result in a compiler warning or error. I believe this is by design.

link|flag
updated with an example of what is being flagged as a warning, is this a bug with R#? – Jon Erickson Aug 26 at 17:43
1  
Ilya is correct. In your example, the variable isn't needed at all, using(new TransactionScope()) is sufficient. – Dan Rigby Aug 26 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.