using (var stream = new FileStream(path, FileMode.Open, FileAccess.ReadWrite))
{
stream.Position = 24;
stream.WriteByte(0x04);
}
'C#' 카테고리의 다른 글
[C#] - 인터페이스(Interface) (0) | 2017.07.21 |
---|---|
[C#] 클래스 상속/파생/추상 (0) | 2017.07.19 |
[C#] 시간체크(Stopwatch) (0) | 2017.07.18 |
[C#] string을 byte 배열로 byte 배열을 string으로 변환 (0) | 2017.07.06 |
[C#] File Copy Access to the path error 1312 (0) | 2016.12.07 |