Alexander Yumashev
Alexander Yumashev
Type: Bug ## Issue Description ## When adding an attribute to HTML tag in Razor file, pressing "=" (equal sign) after atteibute name adds another "=" to value. Disabling the...
Would you please include osx binaries too? I tried to do this myself, since most codecs you use (libgif, libpng etc) offer mac-arm64 versions but got stuck.
I benchmarked `ZString` against .NET built-in `ValueStringBuilder` (not exposed publicly but we can steal extract the sources from https://source.dot.net/#System.Text.RegularExpressions/src/libraries/Common/src/System/Text/ValueStringBuilder.cs,42c1e0215cccb8b1 ) For some cases (when knowing length upfront and when appending...
...so that appending an interpolated string like this: ```csharp sb.Append($"BLAHBLAH {integer}"); ``` behind the scenes this should result in this (pseudo code) ```csharp ZString.AppendInterpolatedStringHandler handler = new ZString.AppendInterpolatedStringHandler(9, 1, zstringBuilder);...