Maybe we can use 64 bit integer for dictionary counts #73326
-
Unfortunately, I want my code to be historically correct and Dictionary's Count property won't let me |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
.... At the scale where you'd actually have that many elements, you're - usually - looking at dedicated database types and interfaces (note this isn't necessarily "SQL Database", but something purpose-built). That aside, this would be a (fairly major) breaking change - especially since you'd probably have to do the entire collections namespace (since the property actually comes from |
Beta Was this translation helpful? Give feedback.
.... At the scale where you'd actually have that many elements, you're - usually - looking at dedicated database types and interfaces (note this isn't necessarily "SQL Database", but something purpose-built).
That aside, this would be a (fairly major) breaking change - especially since you'd probably have to do the entire collections namespace (since the property actually comes from
IReadOnlyCollection
).