예제 #1
0
 internal void Close()
 {
     try {
         _SourceStream.Close();
     }
     catch (IOException ex) {
         throw NewBitstreamException(BitstreamErrors.STREA_ERROR, ex);
     }
 }
예제 #2
0
파일: Bitstream.cs 프로젝트: SNAKEspb/VKBot
 public void close()
 {
     try
     {
         m_SourceStream.Close();
     }
     catch (IOException ex)
     {
         throw newBitstreamException(BitstreamErrors.STREAM_ERROR, ex);
     }
 }