From a397869333ebf67e59bb5ac3919d74ff84b9e8f2 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 26 Apr 2022 11:06:58 +0100 Subject: [PATCH] Fix AsArray call to AsArrayValue --- X10D/src/IO/ByteExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X10D/src/IO/ByteExtensions.cs b/X10D/src/IO/ByteExtensions.cs index 0e6cc0b..3665bb1 100644 --- a/X10D/src/IO/ByteExtensions.cs +++ b/X10D/src/IO/ByteExtensions.cs @@ -14,7 +14,7 @@ public static class ByteExtensions /// An array of bytes with length 1. public static byte[] GetBytes(this byte value) { - return value.AsArray(); + return value.AsArrayValue(); } ///