From 6a203e232ad13ec3344abdc5eb40394c57110bf1 Mon Sep 17 00:00:00 2001
From: jeremyosterhoudt <jeremyosterhoudt@yahoo.com>
Date: Wed, 15 Nov 2023 13:53:14 -0800
Subject: [PATCH] Added clarity to a comment describing feature availability

---
 csharp/src/Apache.Arrow/Arrays/BinaryArray.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/csharp/src/Apache.Arrow/Arrays/BinaryArray.cs b/csharp/src/Apache.Arrow/Arrays/BinaryArray.cs
index c287c4a385b3a..4c10f83976662 100644
--- a/csharp/src/Apache.Arrow/Arrays/BinaryArray.cs
+++ b/csharp/src/Apache.Arrow/Arrays/BinaryArray.cs
@@ -319,8 +319,8 @@ public TBuilder Set(int offset, ReadOnlySpan<byte> values)
 
                 return Instance;
 #else
-                //There is not a clean way to shift the bytes with Span.CopyTo which was added in .NetStandard 2.1/.NET5
-                //Given .NetStandard past EOL, keep existing functionality the same for those users.
+                //There is not a clean way to shift the bytes without Span.CopyTo which was added in .NetStandard 2.1/.NET5
+                //For that reason this feature is only avaiable when running versions of .NetStandard 2.1/.NET5 and higher
                 throw new NotImplementedException();
 #endif
             }