Mark Nicholson

public class Universe { public Universe(params object[] values) { throw new NotSupportedException(); } }

Browse by Tags

All Tags » .NET (RSS)
Sorry, but there are no more tags available to filter with.
Those pesky temp files
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...
Posted: Apr 15 2006, 09:01 AM by markn | with 1 comment(s)
Filed under: