-
Re: Get run values at start from the user
You can also use Util.ReadLine with an enum: var env = Util.ReadLine<Env> ("what environment?", Env.Dev);enum Env { Dev, Sys, Stg, Prd }; (View Post) -
Re: is it possible to create a self hosted api endpoint within linqpad?
There's a demo in the inbuilt samples. Press Ctrl+F1 and search for ASP.NET web. (View Post) -
Re: WebView2 bug with pdfs
Also, a word of warning: this will crash on the non-xcopy version of LINQPad because WebView2 will try to write temporary files to the folder where LINQPad is installed in %programfiles%. To work aro… (View Post) -
Re: Where are LINQPad.exe arguments documented?
You can find this by pressing Ctrl+F1 and searching for 'arguments'. Use -run to run a query immediately. Use -hideeditor if you want the results zoomed and the editor collapsed. Use -newinstance to … (View Post) -
Re: Closing Separate Results Window / maximizing pane automatically
This should be fixed in 8.8.5. (View Post)