CSharpAnalyzers/ExceptionalReSharper

Exceptional ignores [NotNull] tags for members / parameters

yfital opened this issue · 0 comments

public void Add([NotNull] TData dataItem)
...
if (_items.TryAdd(dataItem.Key, dataItem))
...

Exceptional requests to add AregumentNullException, although both dataItem and key member are marked with NotNull