Here is the original source, which contains a very common code pattern which I consider an anti-pattern or at best unnecessarily verbose:
private bool SymbolDevice;
. . .
if((oemInfo.IndexOf("SYMBOL") > -1) || (oemInfo.IndexOf("MOTOROLA") > -1))
SymbolDevice = true;
else
{
SymbolDevice = false;
}
I would refactor it this way:
SymbolDevice = ((oemInfo.IndexOf("SYMBOL") > -1) || (oemInfo.IndexOf("MOTOROLA") > -1));
Resharper (version 2.0, the last version available for Visual Studio 2003 / .NET 1.1, which this project is) refactors it this way:
SymbolDevice = (oemInfo.IndexOf("SYMBOL") > -1) || (oemInfo.IndexOf("MOTOROLA") > -1) ? true : false;
I agree that Resharper's refactoring improves upon the legacy code, but is there any reason I would choose it over my version?

SymbolDevice s = oemInfo.IndexOf("SYMBOL") > -1 || oemInfo.IndexOf("MOTOROLA") > -1. With only two sides of the OR, explicit parentheses are unnecessary – DiskJunky Feb 25 at 21:56