-
Re: LINQPad 5 beta & preprocessor directives
AFAIK, you get the same issue in Visual Studio when renaming symbols. Making refactoring work reliably across code that's excluded due to preprocessor directives is tricky, to say the least, and…2 · -
Re: Selecting a Framework
LINQPad 8 supports only .NET 3.1 and later, i.e., .NET Core 3.1, 5, 6, 7, 8, and 9. For .NET Framework 4.x support, you need to download LINQPad 5.2 · -
Re: Customizing Dump in a DataContext package
The static ToDump method applies to scripts and My Extensions - not drivers. With drivers, you instead override the PreprocessObjectToWrite method. This is described in the documentation: https://www…1 · -
Re: linqPad IWebdriver want to connect to Mysql ?
Also, change the Language in the dropdown to 'C# Statements'. Or else wrap your code in a void Main(): void Main(){ IWebDriver driver = ... ...}1 · -
Re: LINQPad for macOS: First public preview!
Sounds like your project has global using directives or the project file has <ImplicitUsings>enable</ImplicitUsings>. Create a LINQPad script with the following content: global using Syst…1 ·
