-
Re: What is default accessibility modifier for struct Point in my code?
Also, in LINQPad 7/8, you can disable all auto-magic as follows, if you want to investigate C#'s normal accessibility rules without nested types: namespace Test{ class Foo { static void Main() { new … (View Post) -
Re: What is default accessibility modifier for struct Point in my code?
Ah, you must be running LINQPad 5. This is more heavy-handed, and will also extract the Point struct in this scenario (because it's required by your extension method). This is why you've ended up wit… (View Post) -
Re: What is default accessibility modifier for struct Point in my code?
The short answer is that they are both private. So, in your scenario, you must add an internal or public modifier the Point type. The long answer is that LINQPad normally wraps your code in a class c… (View Post) -
Re: LINQPad 8 early preview now available
Thanks for the report. I spent a fair bit of time on this several days ago. Turns out, it's a known issue with the JIT's tired compilation engine in .NET 8 RC-1/RC-2, and has been fixed in the most r… (View Post) -
Re: How to set UseCompatibilityLevel in LINQPad8
Are you referring to the dynamic EF Core driver? If so, this will be supported in the next update. (View Post)