3 questions
9
votes
2
answers
244
views
Nullable warning when upgrading to extension-members syntax
I have two versions of helper methods for logging on ILogger. The first (classic extension methods) compiles fine; the second using extension members results in a compiler warning/error code.
CS8620: ...
2
votes
1
answer
466
views
Are extension properties subject to being displayed in the debugger by default?
I'm working on building up my extensions utilizing the new extension member syntax so I can add static class methods and extension properties for my commonly used operations.
I have defined a few ...