Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- c#
- 기초
- 셋업
- 파이어버드
- 문자열
- SQL
- Visual Studio 2005
- 인스톨
- 입문
- VB.NET
- Delphi
- Visual Basic
- vb
- 소니
- 파라미터
- MFC
- 예제
- PostgreSQL
- 델파이
- WIN32 SDK
- MySQL
- 데이터베이스
- dll
- xml
- 설치
- Firebird
- SDK
- winsock
- 초보
- 시리얼 통신
Archives
- Today
- Total
목록binary (1)
프로그래밍 노트
C#에서 Binary 방식 직렬화(Serialization) 예제 소스
이 글에는 왜 직렬화를 하는지는 언급하지 않는다.바이너리 파일로 직렬화를 하면 파일이 바이너리 형식으로 저장된다. using System;using System.IO;using System.Collections;using System.Runtime.Serialization.Formatters.Binary; namespace SerializationBin{ class Program { static void Main(string[] args) { ArrayList MyList = new ArrayList(); for (int i = 0; i < 5; i++) { MyList.Add(i); } for (int i = 0; i < MyList.Count; i++) { Console.WriteLine(MyList..
C#/기초
2012. 12. 12. 18:43