You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Understood. I was also under the impression that it was about to be implemented for multiple collection keys but the initial request implementation appearently only covered the ordered keys, therefore I have created a new request: #63537 Implement IList interface for all collection keys.
Anyways, it will probably take longer than I originally expected before this is being released. I am fine if you like close this case, I am sure that I will remember to reopen it.
Just a heads up:
In the (near?) future, dictionary keys are going to support the
IList
interface.This would mean that e.g.
@($Dictionary.Keys)[0]
can be simplified to$Dictionary.Keys[0]
.see:
#15843
Ordered Dictionary keys are not numerically indexable and linked .Net issue:#56835
OrderedDictionaryKeyValueCollection implement IListThis might lead to (downwards) compatibility issues, therefore a (compatibility) rule for this (future) enhancement could make sense.
The text was updated successfully, but these errors were encountered: