ReSharper - Microsoft.Contracts 사용 시 Null 할당 가능 Design-by-Contract Requires 검사로 인해 null 참조가 발생하지 않을 것임을 ReSharper에 표시할 방법이 있습니까? 예를 들어 다음 코드는 Possible 'null' assignment to entity marked with 'NotNull' attribute7행과 8행에서 ReSharper 의 경고( )를 발생 시킵니다 . private Dictionary _Lookup = new Dictionary(); public void Foo(string s) { Contract.Requires(!String.IsNullOrEmpty(s)); if (_Lookup.ContainsKey(s)) _L..