-
Re: Customizing Dump in a DataContext package
static object ToDump(object input) should be in Program context and not in class, (example). It should be member method in your case, (example). (View Post) -
Re: Get mutiple files from Input failed
var tbFileSingle = new LINQPad.Controls.TextBox().SetFile().Dump("Single File");var btnSingle = new LINQPad.Controls.Button("print selected single file").Dump("Single File&qu… (View Post) -
Re: linqPad IWebdriver want to connect to Mysql ?
IWebdriver has no relation to LINQPad. It's part of Selenium. Since broken collection Mysql is selected script fails on startup. (View Post) -
Re: Is it possible to call c# Method from js?
* In C# create invisible button with onClick handler. * In JavaScript set button text to the data you would like to pass to C# and initiate button click. string UrlSweetAlert2Js = "https://cdn.j… (View Post) -
Re: LINQPad.Controls Event sender got null
var button = new LINQPad.Controls.Button("Copy").Dump();button.Click += (sender, e) => { var buttonSender = sender.GetType().Dump();}; LINQPad.Controls.Core.HtmlElement (View Post)