Skip to content

Commit

Permalink
Fix IDE0028 (#804)
Browse files Browse the repository at this point in the history
  • Loading branch information
bording authored Feb 11, 2025
1 parent 12f8363 commit 2b6f16e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public async Task ShouldUpdate()
UInts = [2147483647, 4294967295],
SBytes = [0x0F, 0x10],
Decimals = [1.234m, 5.678m],
HashSetOfMemoryStreams = new HashSet<MemoryStream>(memStreams),
HashSetOfMemoryStreams = [.. memStreams],
ImmutableHashSetOfStreams = new HashSet<MemoryStream>(memStreams).ToImmutableHashSet(),
HashSetOfString = ["a", "b", "c", "d"],
SortedSetOfString = ["a", "b", "c", "d"],
Expand Down

0 comments on commit 2b6f16e

Please sign in to comment.