If I have the following code...
#if PocketPC
/// <summary>Indicates whether usage of the Windows Mobile 5.0+ GPS intermediate driver is allowed.</summary>
private static bool allowGpsIntermediateDriver = true;
/// <summary>Indicates whether the device detection thread is currently active.</summary>
private static bool isDetectionThreadAlive;
#endif
...ReSharper gives me "xml comment is not placed on a valid language element" errors. Sometimes these can be suppressed with #pragma but mostly they can't. Is there any way around this?