static void Main(string[] args)
{
int counter=0;
string line;
//파일 읽기
System.IO.StreamReader file = new System.IO.StreamReader("access.log");
while((line = file.ReadLine()) != null)
{
System.Console.WriteLine(line);
counter++;
}
file.Close();
}
반응형
'프로그래밍 > C#' 카테고리의 다른 글
C# 정렬 sort (0) | 2019.03.24 |
---|---|
C# BinarySearchTree 이진탐색트리 (0) | 2019.03.24 |
C# 문자,숫자,영어,한글 구분 (0) | 2019.03.21 |
[C# 퀴즈 풀이]숫자구분자변환 (0) | 2018.03.26 |
[C# 퀴즈]숫자구분자변환 (0) | 2018.03.26 |