-
Re: How to find out which temp (shadow) folder was created for my script?
If you know a type that comes from one of the dlls that will be in the shadow folder, you can try typeof(xxxx).Assembly.Location1 · -
Re: Add a reference to C# program
No need to add the dll, just reference it, eg System.Web.HttpUtility.HtmlEncode("1&2").Dump(); There's no longer an option to add Framework assembly references. In keeping with Vis…2 · -
Incorrect output when using Console.WriteLine with Util.WithStyle
The output from BenchMarkDotNet has a formatting issue and I think this is a bug in LinqPad. The following illustrates the issue. Console.Write (Util.WithStyle("1", "color:#008080"…1 · -
Re: LINQPad 6 v.6.5.5 MissingMethodException Thrown When Running a C# Program with System.Net.Dns
How and why are you adding Framework 4 references? You shouldn't need any additional references, and just one namespace System.Net See http://share.linqpad.net/tgfuie.linq1 · -
Re: multithreading (unexpected?) behavior
You need to set done false in your main method. Unless you have changed your query (and it needs to be recompiled) or have the 'Always use Fresh Process per execution' option in preferences…2 ·