Skip to content

Commit e49f8fa

Browse files
committed
.
1 parent a41bcaf commit e49f8fa

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The package targets `netstandard2.0` and is designed to support the following ru
1212
* `net5.0`, `net6.0`, `net7.0`, `net8.0`, `net9.0`
1313

1414

15-
**API count: 412**<!-- singleLineInclude: apiCount. path: /apiCount.include.md -->
15+
**API count: 414**<!-- singleLineInclude: apiCount. path: /apiCount.include.md -->
1616

1717

1818
**See [Milestones](../../milestones?state=closed) for release notes.**
@@ -530,8 +530,8 @@ The class `Polyfill` includes the following extension methods:
530530

531531
#### Encoding
532532

533-
* `int GetBytes(ReadOnlySpan<char>, Span<byte>)`
534-
* `string GetString(ReadOnlySpan<byte>)`
533+
* `int GetBytes(Encoding, ReadOnlySpan<char>, Span<byte>)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.text.encoding.getbytes?#system-text-encoding-getbytes(system-readonlyspan((system-char))-system-span((system-byte))))
534+
* `string GetString(Encoding, ReadOnlySpan<byte>)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.text.encoding.getstring#system-text-encoding-getstring(system-readonlyspan((system-byte))))
535535

536536

537537
#### EventInfo

src/Tests/GlobalUsings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
global using NUnit.Framework;
22
global using System;
33
global using System.Diagnostics.CodeAnalysis;
4+
global using System.Text.RegularExpressions;

src/Tests/PolyfillTests_Guid.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System.Text.RegularExpressions;
2-
31
partial class PolyfillTests
42
{
53
static Regex guidV7Regex = new("^[0-9a-f]{8}(?:\\-[0-9a-f]{4}){3}-[0-9a-f]{12}$");

0 commit comments

Comments
 (0)