-
Re: BUG: Can't run an F# program with a main entry point
This was fixed in a recent beta. You can download it here: https://www.linqpad.net/download.aspx#beta1 · -
Re: using directives
I've incorporated some improvements to this in the latest beta. It will now parse the expressions above (although it's still not completely robust).2 · -
Re: Weird behaviour on intellisense suggestions selection
Thanks for reporting. This is now fixed in the new beta: http://www.linqpad.net/download.aspx#beta1 · -
Re: Util.Compile and Util.Run questions
To get what was dumped by the your subscript, you call AsString():var compiledQuery = Util.Compile ("..."); var retVal = compiledQuery.Run (QueryResultFormat.Html, ...); retVal.AsString().D…2 · -
Re: Question about the working directory
Yes: you can start your query as follows: Directory.SetCurrentDirectory (Path.GetDirectoryName (Util.CurrentQueryPath)); One thing to be aware of, though, is that LINQPad runs all your queries in a s…2 ·