Skip to main content
Filter by
Sorted by
Tagged with
9 votes
2 answers
250 views

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: ...
Christian's user avatar
  • 132
0 votes
2 answers
75 views

I am trying to link a many-to-many relationship without any intermediary class in my domain. The link is SoundProfiles <-> Switches. They're both not required. The error I get is One or more ...
Yves Schelpe's user avatar
  • 3,513
5 votes
1 answer
202 views

After upgrading from .NET 9 to .NET 10, a MongoDB query that used to work now throws a System.NotSupportedException during query execution. I'm looking for pointers whether this is a runtime change in ...
mrcode's user avatar
  • 567
2 votes
0 answers
134 views

C# 14 is adding user-defined operators User-defined compound assignment operators like += and -=. User-defined increment (++) and decrement (--) operators. https://learn.microsoft.com/en-us/dotnet/...
Serve Laurijssen's user avatar