Sorry, but there are no more tags available to filter with.
Creating temporary files in .NET is not something I'd usually have to think too long and hard about, but if you do, you soon realise the inadequacies associated with Path.GetTempFileName(). Recently I was required to create a stream class that is a hybrid between a memory stream and a file stream. The idea is simple; for all intents and purposes it acts like a giant buffer (similar to memory stream), however internally when memory exceeds a designated threshold, it begins using disk (via a temporary...