Commits


Curt Hagenlocher authored and GitHub committed 431c4ea4d9f
GH-39223: [C#] Support IReadOnlyList<T?> on remaining scalar types (#39224) ### What changes are included in this PR? Decimal128Array implements IReadOnlyList<SqlDecimal?> and IReadOnlyList<byte[]>. Decimal256Array implements IReadOnlyList<SqlDecimal?>, IReadOnlyList<string> and IReadOnlyList<byte[]>. FixedLengthBinaryArray implements IReadOnlyList<byte[]>. DurationArray implements IReadOnlyList<TimeSpan?>. Also removes #ifs which are no longer relevant now that netstandard13 isn't being built any more. ### Are these changes tested? Yes. * Closes: #39223 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>