Write(Byte[] array, int offset, int count);

        쓰기 메소드
        array 바이트 배열을 offset 번째 바이트 부터

        count   바이트만큼 write하라는 명령

예) fileStream.Write(new Byte[3]{1,2,3}, 0, 3) 

결과) fileStream 스트림에 123을 출력한다. 

Read(Byte[] array, int offset, int count);
       Write와 동일 

 

+ Recent posts