> 백엔드 개발 > C#.Net 튜토리얼 > C#의 스트림 집합

C#의 스트림 집합

WBOY
풀어 주다: 2023-08-23 08:17:05
앞으로
773명이 탐색했습니다.

C#의 스트림 집합

문자열 배열 값 설정−

string[] names = new string[] {"Jack", "Tom"};
로그인 후 복사

이제 foreach 배열을 사용하여 파일에 콘텐츠 쓰기−

using (StreamWriter sw = new StreamWriter("names.txt")) {

   foreach (string s in names) {
      sw.WriteLine(s);
   }
}
로그인 후 복사

다음은 파일에 텍스트를 쓰기 위한 스트림 배열을 보여주는 예입니다−

예제

using System;
using System.IO;

namespace FileApplication {
   class Program {
      static void Main(string[] args) {
         string[] names = new string[] {"Jack", "Tom"};

         using (StreamWriter sw = new StreamWriter("names.txt")) {

            foreach (string s in names) {
               sw.WriteLine(s);
            }
         }

         // Read and show each line from the file.
         string line = "";
         using (StreamReader sr = new StreamReader("names.txt")) {
            while ((line = sr.ReadLine()) != null) {
               Console.WriteLine(line);
            }
         }
         Console.ReadKey();
      }
   }
}
로그인 후 복사

위 내용은 C#의 스트림 집합의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿