2014/10/31

Symantec Recovery Disk - Windows 7/8/2008/2012

- 시스템 예약 파티션 (100M~300M)
- 드라이브 파티션 (ex, C / D.....)

1. 시스템 예약 파티션 복원 옵션
- Set drive active(for booting OS)
- Restore master boot record

2. 드라이브 파티션 복원 옵션
- Use Restore Anyware to recover to different hardware (라이센스 필요)
- Restore original disk signature

 

[Anyware restore]
http://www.symantec.com/docs/TECH55329  
http://www.symantec.com/docs/TECH55822
http://www.symantec.com/docs/TECH212105    
Delete Existing Drivers
Prompt for Drivers
Run Windows Mini-Setup

 

 


2014/10/08

C#, 클래스의 필드(변수) 정보 가져오기


Type type = typeof(object);

System.Reflection.FieldInfo[] f =
    type.GetFields(System.Reflection.BindingFlags.Public |
        System.Reflection.BindingFlags.Static |
        System.Reflection.BindingFlags.Instance);

foreach(System.Reflection.FieldInfo _f in f) {
    Console.WriteLine(_f.Name + ":" + _f.GetValue(null));
}

# Flags 는 해당 클래스내에 선언된 것중에 가져올 타입 지정




가장 많이 본 글