-
Re: LINQPad.Controls pause for input
How about this:void Main() { var radioOne = new RadioButton ("group1", "One").Dump(); var radioTwo = new RadioButton ("group1", "Two").Dump(); var radioThree =…3 -
Re: my extensions 101
Simple example:public static class MyExtensions { public static bool Contains (this string s, string value, bool ignoreCase) => s.IndexOf (value, ignoreCase ? StringComparison.OrdinalIgnoreCase : …3 -
Re: Error adding xUnit.net nuget package
Update: try the latest beta. I've added code to identify and remove duplicate attributes from the NuGet package file. It should at least work for the xunit.abstractions package, or packages with…2 -
Re: Does AutoComplete work with F# type providers?
Yes, that's right: I get the autocompletion on the countries (and in the latest beta, the countries with spaces in their names are properly escaped). Let me know whether it makes any difference …1 -
Re: BUG? Preprocessor directive LINQPAD
Thanks - this should now be fixed in the latest beta.2
