-
Re: Collection expressions confusion
This should be fixed in 8.0.12. (View Post) -
Re: Collection expressions confusion
It's possible that this has been fixed in more recent Roslyn builds. LINQPad uses the latest stable Roslyn RTM, for which C# 12 is still technically in preview status. LINQPad will use the newer Rosl… (View Post) -
Re: Finish LINQPad Dark Theme?
Thanks - I did not know about this API. Will add this to the next build. (View Post) -
Re: What is default accessibility modifier for struct Point in my code?
The types accessibility will remain internal (the default). LINQPad does not change the accessibility of any of your types. I don't think 4.59 supports the nonest option, nor the ability to define na… (View Post) -
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)