-
Re: Any way to log parameter values for methods defined in LinqPad? (without hardcoding parameter names)
In terms of other solutions for logging, there are functional approaches, which work well on the call-side: void Main(){ Log (() => TestMethod ("Sdf"));}string TestMethod (string x){ Con…1 · -
Re: Could not load file or assembly 'PresentationFramework, Version=6.0.2.0
Could you try re-installing .NET 6 Desktop Runtime? https://dotnet.microsoft.com/en-us/download/dotnet/6.01 · -
Re: How do I reassociate *.linq files with Linqpad 7?
Try right-clicking a .linq file in Explorer, choose 'Open With', 'Choose another app', 'More apps', scroll down, and 'Look for another app on this PC'.1 · -
Re: Connection to Windows search?
There's no custom driver for this. You could make it easier to use by writing a query such as this: void Main(){ // Test call: WinSearch (@"SELECT TOP 10 System.ItemPathDisplay, System.ItemUrl F…1 · -
Re: Connection to Windows search?
You could write a query like this: using (var connection = new OleDbConnection ("Provider=Search.CollatorDSO;Extended Properties=\"Application=Windows\"")){ connection.Open(); var…1 ·