Fix AsArray call to AsArrayValue

This commit is contained in:
Oliver Booth 2022-04-26 11:06:58 +01:00
parent d672032c44
commit a397869333
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public static class ByteExtensions
/// <returns>An array of bytes with length 1.</returns>
public static byte[] GetBytes(this byte value)
{
return value.AsArray();
return value.AsArrayValue();
}
/// <summary>