IntroductionThere are hundreds and hundreds of classes in the .NET framework and there are some that are really useful which you may never come across. I've been a .NET programmer for several years and I still run across classes in the framework that I've never seen before. I thought it would be cool to document some of the really useful (in my opinion) classes because other programmers may neve..
Written by 김영일(Youngil Kim), C#.NET Developer 프로그램으로 임시파일을 생성하는 경우 해당 폴더에 이미 존재하는 파일과 파일명이 겹치지 않도록 하는 경우가 필요합니다. 이를 .NET Framework 1.1에서는 System.IO.Path 클래스의 GetTempFileName 메소드로 제공을 하고 있습니다. 그러나, 이 메소드는 파일명을 생성하는 과정에서 실제 그 파일을 임시폴더에 0사이즈로 생성하는 문제점이 있습니다. 이는 아마도 임시폴더에 있는 다른 파일과 확실하게 중복되는 경우를 예방하기 위한 방법으로 생각되어 집니다. .NET Framework 2.0에서는 임시 파일명으로 이용할 수 있는 랜덤하게 파일명을 만들어주는 GetRandomFileName메소드가 새롭게 ..