1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-09 23:25:43 +00:00

Move StringBuilderReader to Text namespace (#7)

This commit is contained in:
Oliver Booth 2022-04-27 21:42:40 +01:00
parent 23fe85f2be
commit 23f912f4bb
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -1,6 +1,6 @@
using System.Text;
namespace X10D;
namespace X10D.Text;
// NOTE: the overriden async overloads simply wrap the result of their sync counterparts because StringBuilder isn't inherently
// async. calling Task.FromResult (or creating a new ValueTask) is sufficient enough in this case, because there is simply no