Skip to content

Commit

Permalink
Added clarity to a comment describing feature availability
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyosterhoudt authored Nov 15, 2023
1 parent cccf233 commit 6a203e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csharp/src/Apache.Arrow/Arrays/BinaryArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 6a203e2

Please sign in to comment.