using System.Net.Sockets;
IDisposable
using TcpClient client = new TcpClient(...);
두 번째 용법의 using은 IDisopsable 인터페이스를 구현한 객체를 자동으로 Dispose() 해주는 문법이다.
https://storycompiler.tistory.com/223