Skip to content

Commit

Permalink
Fix wrong summary.
Browse files Browse the repository at this point in the history
  • Loading branch information
10sa committed Mar 30, 2019
1 parent a226583 commit 15a6265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CryptoStream/CryptoMemoryStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public override int Read(byte[] buffer, int offset, int count)
/// <param name="buffer">이 메서드는 지정된 바이트 배열의 값이 offset과 (offset + count - 1) 사이에서 현재 원본으로부터 읽어온 바이트로 교체된 상태로 반환됩니다.</param>
/// <param name="offset">현재 스트림으로 바이트를 복사하기 시작할 buffer의 바이트 오프셋(0부터 시작)입니다.</param>
/// <param name="count">쓸 최대 바이트 수입니다.</param>
/// <param name="erase">읽어들인 스트림 위치의 데이터를 0으로 채웁니다.</param>
/// <param name="erase">읽어들인 스트림 위치의 데이터를 0으로 채울지에 대한 여부입니다.</param>
/// <returns>버퍼로 쓴 총 바이트 수입니다. 해당 바이트 수를 현재 사용할 수 없는 경우 이 수는 요청된 바이트 수보다 작을 수 있으며 바이트를 읽기 전에 스트림의 끝에 도달한 경우에는 0이 될 수도 있습니다.</returns>
public int Read(byte[] buffer, int offset, int count, bool erase)
{
Expand Down

0 comments on commit 15a6265

Please sign in to comment.