One of the many cool things about GitHub #CoPilot is that it helps increase discoverability of API features you may not have ever known existed!
For example, when I want to return an empty collection, I usually just instantiate a zero-length array. But, apparently, there's a cleaner way in .NET: Enumerable.Empty<T>()
Now I know! Neat!