일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 입문
- 기초
- SDK
- 파이어버드
- winsock
- WIN32 SDK
- Firebird
- 인스톨
- Delphi
- vb
- dll
- 시리얼 통신
- Visual Studio 2005
- 데이터베이스
- 예제
- 문자열
- 설치
- SQL
- xml
- 소니
- PostgreSQL
- MFC
- 셋업
- 초보
- c#
- VB.NET
- Visual Basic
- MySQL
- 파라미터
- 델파이
- Today
- Total
목록직렬화 (3)
프로그래밍 노트
using System;using System.IO;using System.Runtime.Serialization.Formatters.Soap; namespace SerializationSoapStruct{ // 대괄호가 붙으면 attribute [Serializable] // 직렬화 struct Person { public string name; public int age; [NonSerialized] // 직렬화하지 않은 변수 public string hobby; } class Program { static void Main(string[] args) { Person personOut = new Person(); personOut.name = "최말봉"; personOut.age = 40; perso..
이 글에는 왜 직렬화를 하는지는 언급하지 않는다.바이너리 파일로 직렬화를 하면 파일이 바이너리 형식으로 저장된다. 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..
이 글에는 왜 직렬화를 하는지는 언급하지 않는다.SOAP방식으로 직렬화를 하면 파일이 자동으로 XML 태그가 붙어 저장된다.using System;using System.IO; // 파일 처리using System.Collections; // ArrayList 사용// 참조에서 추가 필요using System.Runtime.Serialization.Formatters.Soap; namespace serializationSoap{ class Program { static void Main(string[] args) { ArrayList LunchMenu = new ArrayList(); LunchMenu.Add("김치찌게"); LunchMenu.Add("된장찌게"); LunchMenu.Add("냉면"); ..