-
Set results window default size and position
Hi, Is there a way to control the monitor and position of the results window when undocked? I have two monitors and usually have LINQPad(5/7) snapped to the right-hand half of the right-hand monitor.… (View Post) -
Re: Using AzureOpenAIClient with LINQPadTokenCredential
So thank you again. That thread did help and I'm now up and running. I now understand that there were a number of things I was not clear on: * As per the other thread I needed to add the https://logi… (View Post) -
Re: Show dif names when diffing lists
So my current workaround is this: void Main(){ var a = new House(1, 3); var b = new House(2, 3); Util.Dif(a, b).Dump("Dump objects"); var firstList = new List<House>() { new House(1, … (View Post) -
How to Dump WPF control as an object (as opposed to rendering)
I'm going to ask and answer this one as I've just discovered. Scenario - you want to inspect the properties of a WPF control, rather than have it render as normal. Answer - just giving the Dump metho… (View Post) -
Re: Get Nuget Package version from query
Great. Thank you. For anyone else who stumbles across this here's an extension method: public static IEnumerable NuGetReferenceInfos(this LINQPad.ObjectModel.Query qry) { var localPackagesFolder = Pa… (View Post)