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
Title: Collections should implement generic interface
Description:
To broaden the usability of a collection, implement one of the generic collection interfaces. Then the collection can be used to populate generic collection types.
Dependency: None
Notes:
The text was updated successfully, but these errors were encountered:
Should we offer to implement IReadOnlyList<T> / IReadOnlyCollection<T> in addition to generic IList/ICollection?
I don't think there's a good way to tell what the generic type should be. Should we put the user in a rename session for the type argument?
publicclassCollection:ICollection,ICollection<[|object|]>{publicvoidCopyTo([|object|][]array,intarrayIndex){ ...}// All of the other 'object' occurrences are highlighted}
How do I unit test a rename session? (I'm calling it "rename session" but I forgot if that was the actual name. It's the thing where you press tab to complete an event handler and something like this happens
Title: Collections should implement generic interface
Description:
To broaden the usability of a collection, implement one of the generic collection interfaces. Then the collection can be used to populate generic collection types.
Dependency: None
Notes:
The text was updated successfully, but these errors were encountered: