Contents

Develop
2013.04.23 16:18

[c#] 파일(File) 쓰기 ㅎㅎ

Views 14294 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
파일 쓰기 초간단 샘플 코드
class Program {
    static void Main(string[] args){
        string MyWriteFile3 = @"Data.txt";
        Console.WriteLine("파일 생성중.... 잠시만 기다리세요.");
        StreamWriter FileWriter3 = File.CreateText(MyWriteFile3);
        Console.WriteLine("파일에 데이터 작성중....");
        FileWriter3.WriteLine("== File Name = FilePorcess3.txt ==");
        FileWriter3.WriteLine("안녕하세요!!!");
        FileWriter3.WriteLine("수고하세요 저장합니다.");

        FileWriter3.Close();
        Console.WriteLine("파일 생성 완료!!!");
    }
}


?

  1. [ios] 간단한 방법으로 OS버전 확인하기.

    Date2013.09.24 CategoryDevelop Byhooni Views14547
    Read More
  2. [c] 기본 자료형(int)이 표현할 수 없는 큰 수(Big number)를 덧셈하는 코드.

    Date2013.04.23 CategoryDevelop Byhooni Views14789
    Read More
  3. [js] window.open() 속성 사용 방법

    Date2013.11.18 CategoryDevelop Byhooni Views14815
    Read More
  4. [jsp] Get방식, Post방식 전송 예제..

    Date2003.04.23 CategoryDevelop Byhooni Views14839
    Read More
  5. [c++] mfc 간단한 파일 입출력 예제

    Date2013.04.23 CategoryDevelop Byhooni Views14997
    Read More
  6. OPT와 CAS에 대한 자료.. (교수님 메일로 보내드린 자료..)

    Date2013.04.23 CategoryDevelop Byhooni Views15061
    Read More
  7. [c] 민수형 libipq 샘플 소스 ㅋㅋ

    Date2003.04.23 CategoryDevelop Byhooni Views15101
    Read More
  8. [php] 쉘에서 실행할 때 인수(파라미터) 받기..

    Date2003.04.23 CategoryDevelop Byhooni Views15126
    Read More
  9. [ios] Hybrid 앱 스터디 발표 자료

    Date2013.09.06 CategoryDevelop Byhooni Views15179
    Read More
  10. [c] vc++ 에서 clrscr(), gotoxy() 함수 사용하기..

    Date2013.04.23 CategoryDevelop Byhooni Views15248
    Read More
  11. [ios] Objective-C에서 SQLite 사용하기..

    Date2013.04.23 CategoryDevelop Byhooni Views15612
    Read More
  12. [C] C언어의 조건 연산자(Conditional Operator)

    Date2003.04.23 CategoryDevelop Byhooni Views15739
    Read More
Board Pagination Prev 1 ... 51 52 53 54 55 56 57 58 59 60 ... 71 Next
/ 71