-
Re: Humanizer can't get localized resource files
If you want a work-around you can copy the Humanizer.dll from the humanizer.core nuget folder and the Humanizer.resources.dll from the Humanizer.Core.zh-Hant folder into a new folder and then remove … (View Post) -
Re: Performance regression in Linqpad 8 for GetType + typeof?
Don't have an answer, but have you tried using LinqPad's built in benchmark support? They say you should never roll your own encryption and when I started looking at the inards of BenchmarkDotNet I c… (View Post) -
Re: Performance regression in Linqpad 8 for GetType + typeof?
Definitely weird. If you change the order of the tests, so that the type.GetType() test runs first then this big increase disappears. It's not a linqpad issue as a VS2022 project with the attached fi… (View Post) -
Re: ChartJS in linqpad
I'm certainly not an expert, but the following works for me var html = """<div> <canvas id="myChart"></canvas></div><script src="https://cdn.j… (View Post) -
Re: Debugger values out when source includes line separator character (\u2028)
Your code is indeed pasteable and shows the bug, I think the debugger is pointing to the wrong line because of this character. It you step through the code, you will notice it doesn't stop on the dou… (View Post)