Post tagged "C#"

If you cannot find what you are looking for, check the archives or use the category list provided in the right side-bar to view postings by category.

Here are the results of your request:

14 Nov 2008

Strategy Design Pattern

If you have the algorithms with conditional statements in the client code it will be messy. The Strategy pattern moves an algorithm from the client code to a separate class. A program that requires a...

11 Nov 2008

NAnt task with Red-Gate SQL Compare

It can be an easy way to do if you have a database with schema changes. You have to convert a database to scripts so that you can commit to source control by comparing script...

9 Oct 2008

Art Of Test WebAii Tests Web UI

My colleague have some problems using Selenium to test the website specifically issues with JavaScript and Ajax. Also we would like to include testing nicely and easily integrated into our build process with continuous integration. So...

28 Sep 2008

Factory Method Design Pattern

The factory method pattern is a design pattern that allows for the creations of objects without specifying the type of object that is to be created in code. A factory class contain a method that...

17 Jul 2008

Change background color of TextBox or ComboBox in Windows Forms

After one of the applications is done successfully completed with automatic unit tests and send to users, what else I need to do is that waiting to get feedback from users. You know what the...