Sorry, but there are no more tags available to filter with.
-
On my current assignment we develop and maintain a number of Windows services. Some of these service depend on others. The problem we faced when we needed to deploy new versions, is that services did not start in the correct order. Some services depend on others, so these need to be started first. This...
-
At Tech-Ed 2006 I attended a session about hidden treasures in .Net. One of the treasures mentioned there was the ToTitleCase() method. This method changes the case of the first character of each word in a text to Upper case: System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(...
-
I'm working on a solution in Visual Studio 2003 at the moment, which contains about 15 assemblies. All these assemblies have a AssemblyInfo.cs file which contains more or less the same information. In general, when you look at larger solutions, you will have only a few settings that might differ between...
-
I talked to Patrick about the problem he had with hashtables and how good he thinks the VB.Net collections are. He wanted to add objects to a list and retrieve them in the order in which they were entered. Hash tables are organized using the hash code of the key. A SortedList could work, but then you...
-
This morning I wrote the NUnit test class for a WebService method I am currently building. This method stores data in different data stores and uses other webservices to do this. All these services were running on my machine. But when I started NUnit, the test failed when I tried to make a call to one...