dotnet/roslyn

Make intellisense provide suggestions for generic lists where <T> is the class inherited.

開放

#54,929 建立於 2021年7月19日

 (1 則留言) (0 個反應) (0 位負責人)C# (4,257 個分叉)batch import
Area-IDEConcept-Continuous ImprovementDeveloper CommunityIDE-IntelliSensehelp wanted

倉庫指標

星標
 (20,414 顆星)
PR 合併指標
 (平均合併 6天 17小時) (30 天內合併 256 個 PR)

描述

This issue has been moved from a ticket on Developer Community.


Please restrict intellisense to types allowed for a generic type parameter. The entry will scroll down a list of all types that contains the class inherited. Let's say:

public T AddComponent<T>() where T : Component, new()
        {
            var component = new T();
            component. Entity = this;
            Components.Add(component);
            component. Initialize();
            return component;
        }

So all the classes that are inherited from Component Example: Public Class Ninja: Component Will be displayed whenever i use: AddComponent (< -Intellisense display of options where it suggests the classes that inherits the Component Class- >) So it will appears: AddComponent (<Ninja>)

Thanks in advance, Luke.


Original Comments

Feedback Bot on 6/20/2021, 07:55 PM:

Thank you for taking the time to provide your suggestion. We will do some preliminary checks to make sure we can proceed further. We'll provide an update once the issue has been triaged by the product team.

貢獻者指南