← Back to context

Comment by oldmanhorton

5 hours ago

The dotnet team provides some agent plugins which solve some of these issues. I expect unions in dotnet 11 will need some skill updates too.

I wonder if any of those work alongside Github Copilot (the autocomplete not actual agent).

Because at this point I would do anything if I could get Github Copilot to understand the new language features and stop trying to constantly revert code.

The one specific thing I'm constantly having to deny is Copilot seeing this:

    List<string> items = [];

into this:

    List<string> items = new List<string>();