Skip to content

Commit

Permalink
Fix PCL build
Browse files Browse the repository at this point in the history
  • Loading branch information
xinchen10 committed Feb 21, 2024
1 parent 6795f1f commit e7d70fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Microsoft.Azure.Amqp/Amqp/Encoding/EncodingCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static class EncodingCache
capacity: 43,
comparer: ByteArrayComparer.Instance,
keyFunc: a => Copy(a),
valueFunc: a => System.Text.Encoding.ASCII.GetString(a.Array, a.Offset, a.Count));
valueFunc: a => SystemEncoding.ASCII.GetString(a.Array, a.Offset, a.Count));

static readonly UlongCache performativeCodes = new UlongCache(0x10ul, 0x19ul);
static readonly UlongCache outcomeCodes = new UlongCache(0x23ul, 0x29ul);
Expand Down

0 comments on commit e7d70fe

Please sign in to comment.