-
Re: Why do json dump looks cut off
You are dumping out the WebResponse which includes details of the content but not the actual content itself and you still need to read it using something like using (var reader = new StreamReader(res… (View Post) -
Re: Query no longer compiles in 8.8.8, did in 8.8.7
Do you have C# preview features enabled? Sounds like https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/first-class-span-types#calling-reverse-on-an-array (View Post) -
Re: linqPad IWebdriver want to connect to Mysql ?
Change connection (at the top right) to none (View Post) -
Re: (Bug?) Exception from Linqpad, running to completion in Visual Studio/Command Prompt
I don't have 'Microsoft.ACE.OLEDB.12.0' on my machine, so I can't test this properly but looking at the files included in Helper.7z you have two copies of System.Diagnostics.PerformanceCounter.dll an… (View Post) -
Re: Benchmark stuck on "Waiting for first iteration to complete..."
Has to be a C# program rather than C# Statements. Example. #load "BenchmarkDotNet"public UserQuery() : base (LINQPad.Util.CurrentCxString) { }void Main(){ RunBenchmark();}[Benchmark]public … (View Post)