gRPC client do not dispose Channel
问题 I'm developing .net core 2.0 application with gRPC and find out a problem: after delete reference to instance of my gRPC client class, there still channel that use resourses (memory and processor). Example code: public class MyClient : ClientBase { public MyClient(Channel channel) : base(channel) { } } internal class Program { private static void Main(string[] args) { var list = new List<MyClient>(); for (var i = 0; i < 10000; i++) { Console.WriteLine($"Creating {i} instance"); list.Add(new