CSharpAnalyzers / ExceptionalReSharper

Extension for ReSharper which analyzes thrown and documented C# exceptions and suggests improvements
Microsoft Public License
125 stars 30 forks source link

Exceptional ignores [NotNull] tags for members / parameters #76

Open yfital opened 6 years ago

yfital commented 6 years ago

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