marinasundstrom / CheckedExceptions

Enforce better exception handling in C#/.NET by ensuring exceptions are explicitly handled.
MIT License
7 stars 1 forks source link

Indexer key falsely report `NullArgumentException` in nullable context #43

Closed marinasundstrom closed 6 days ago

marinasundstrom commented 1 week ago

Investigation shows that we don't process the remaining exceptions that weren't assignable to either accessor. We just need to run the ProcessNullable on those exception and make it remove NullArgumentException.

Related to #31

marinasundstrom commented 6 days ago

Also dealt with some improvements to accessor discovery.