コード例 #1
0
ファイル: StreamSocket.cs プロジェクト: skyccn/ice
 public void close()
 {
     Debug.Assert(_fd != null);
     try
     {
         Network.closeSocket(_fd);
     }
     finally
     {
         _fd = null;
     }
 }