취미 기록용 블로그
이번달 PSN+ 무료게임중 하나인 콜오브듀티 모던워페어2 캠페인 리마스터드 엔딩봤습니다. 대략 5~6시간 정도 플탐이 나옵니다. 그래픽은 꽤 훌륭하고요. HDR, 60프레임 지원입니다. 연출도 화려하긴 한데 개인적으론 스토리가 잘 안들어옵니다. 대사를 꼼곰하게 읽어보고 해야 하는데 정신없이 터지고 거기다가 자막이 잘 안보이는 경우도 종종… “read more”
using System; using System.IO; namespace ConsoleApp1 { class Program { static void fileCreated(object sender, FileSystemEventArgs e) { Console.WriteLine(@”{0} 생성되었습니다.”, e.Name); } static void fileChanged(object sender, FileSystemEventArgs e) { Console.WriteLine(@”{0} 가 {1} 되었습니다.”, e.Name, e.ChangeType); } static void fileDeleted(object sender, FileSystemEventArgs… “read more”