-
Re: Why it keeps complain "cs1525 Invalid expression term '['
You don't say which version of LinqPad you are running, but I suspect it may be one that does not support Collection expressions which I think is a C# 12 feature. According to https://www.linqpad.net… (View Post) -
Re: Cannot find LINQPad.UIExtensions.Dump
It is extracted into a subfolder located in %localappdata%\LINQPad\ with the name of the subfolder being the version number (eg 8.0.17). If you want to automate it a bit you can run var version = Unc… (View Post) -
Re: Add a new line in "C# Program" template
Not sure if it would help, but did you know you can disable this message? Edit Preferences Advanced Editor Include user-code placeholder comment in C# Program mode. (View Post) -
Re: LINQPad 8 early preview now available
Love the new DumpTell feature and especially the option to make it the default. Two questions : 1) What is the difference between the green dashes versus the green dots? 2) Why does the following sam… (View Post) -
Re: What is default accessibility modifier for struct Point in my code?
Both private. Remove the Extension Method that won't compile and reflect in ILSpy (Alt-Shift-R) to confirm this. (View Post)