나는 다음과 같은 코드가있는 경우 ... ReSharper에서 - 조건부 컴파일 XML 주석 오류
#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에서 저를 준다 오류 "XML 주석이 유효한 언어 요소에 배치되지 않는다". 때로는 #pragma를 사용하여이를 억제 할 수 있지만 대개는 그렇게 할 수 없습니다. 이 주위에 어떤 방법이 있습니까?
youtrack : http://youtrack.jetbrains.net/issue/RSRP-181007 – AakashM