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
IDictionary saves my life while js object doesn't support non-string key.
it works well but it seems missing IDictionary.key and IDictionary.values.
I only can get the keys or values from enumerable.
IDictionary saves my life while js object doesn't support non-string key.
it works well but it seems missing IDictionary.key and IDictionary.values.
I only can get the keys or values from enumerable.
the drawback is I can't get the underlining array object and need to do O(n) on each
get
.I hope it can add support of getting keys and values like C#.
https://docs.microsoft.com/en-us/dotnet/api/system.collections.idictionary.keys
https://docs.microsoft.com/en-us/dotnet/api/system.collections.idictionary.values
The text was updated successfully, but these errors were encountered: