-
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:/…1 · -
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, …1 · -
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 …1 · -
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…1 ·
