1

我已经用 C# 实现了一个 gRPC 客户端。我应该关闭析构函数中的通道吗?

private readonly Channel channel;

~MyClient()
{
    this.channel.ShutdownAsync().Wait();
}
4

0 回答 0