@ : 키워드를 문자 자체로 인식하도록 합니다.
https://docs.microsoft.com/ko-kr/dotnet/csharp/language-reference/tokens/verbatim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public static void Main(string[] args)
{
string path = @"C:\Users\kyz11\OneDrive\바탕 화면\sampleA.txt";
FileStream fs = new FileStream(path, FileMode.Open);
BinaryReader sr = new BinaryReader(fs);
// read byte
byte[] readBytes = sr.ReadBytes(1000);
foreach(var item in readBytes)
{
Console.Write((char)item);
}
}
|
[결과]
반응형
'C#' 카테고리의 다른 글
[c#] hex를 byte로 변환하는 함수 (Hex to Byte) (1) | 2019.06.06 |
---|---|
[c#] byte를 hex로 변환하는 함수 (byte[] to hex) (0) | 2019.06.06 |
[c#] Byte[]를 int로 변환하는 함수 (Byte[] to int) (0) | 2019.06.06 |
[c#] byte[]와 byte[] 의 유사도를 구하는 함수 (0) | 2019.06.06 |
[c#] Byte[]를 string으로 변환하는 함수(Bytes to string) (0) | 2019.06.06 |