.NET Tip: Take Advantage of Interfaces Middleton WI

Stop writing more code than needed. You can streamline your code if you use interfaces. You will be able to write simpler, more flexible, and more maintainable applications when you apply interfaces.

Local Companies

Acumium
608 310 9700 x 522
5133 West Terrace Drive Suite 300
Madison, , WI
Larson Consulting
(920) 346-5876
127 E Main St
Brandon, WI
Freedom Data Resources Inc
(715) 831-8118
Eau Claire, WI
Link Development Corp
(262) 641-9911
12660 W North Ave
Brookfield, WI
Montgomery & Associates Inc
(414) 425-5184
6965 W Wildwood Creek Ct
Franklin, WI
Infinity Technology
(920) 430-7020
1901 S Webster Ave
Green Bay, WI
Fischer Lyle
(920) 326-6016
W10647 Diefenbach Cir
Beaver Dam, WI
Computerjack
(920) 730-8200
W6232 Contractor Dr
Appleton, WI
Becker Technology Inc
(262) 628-3531
3051 Beechwood Industrial
Hubertus, WI
Advanced Information Management Inc
(920) 996-2380
1648 Tri Park Way
Appleton, WI

.NET Tip: Take Advantage of Interfaces

provided by: 
Originally published at Internet.com


Take advantage of interfaces to make your code cleaner and more reusable. A simple example of where interfaces can be applied is in populating UI controls. How many ListBox controls do you have to populate in your web application? One solution is to write the code to populate each ListBox individually in the Page_Load method. Another method could be to create a helper method that takes an array of data items and a ListBox as parameters, populating the ListBox from the array of data. Here is an example of such a method. private void LoadListBox(object[] data, ListBox ListBoxControl) { for (int i = 0; i < data.Length; i++) ListBoxControl.Items.Add(data[i].ToString()); }

With the LoadListBox method in place, the code to populate the ListBox in the Page_Load method is simplified. string[] TestItems = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }; LoadListBox(TestItems, ListBox1);

Although this is better than doing all the work in the Page_Load method, you can do much better. This works fine for a ListBox, but what about other list type controls? If you apply interfaces, you can enhance the helper method to support a variety of data sources and list type controls. Instead of the helper method taking an array of data items and a ListBox control, it now takes an ICollection and a ListControl. private void LoadListControlFromCollection(ICollection data, ListControl ListControlControl) { foreach (object item in data) ListControlControl.Items.Add(item.ToString()); }

Usage of the new LoadListControlFromCollection method to load a ListBox with data items remains the same. string[] TestItems = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }; LoadListControlFromCollection(TestItems, ListBox1);

The advantage of the new method, however, is that you also can apply it to other list type controls. The flexibility is evident when you use the same method to populate a CheckListBox, DropDownList, RadioButtonList, or BulletList. LoadListControlFromCollection(TestItems, CheckBoxList1); LoadListControlFromCollection(TestItems, DropDownList1); LoadListControlFromCollection(TestItems, RadioButtonList1); LoadListControlFromCollection(TestItems, BulletedList1);

Applying the use of interfaces can make your applications simpler and more flexible. If you take a look through your code, I bet you can find several places where your application would benefit from using interfaces. Start thinking about interfaces today; the person who comes behind you and has to maintain your code will thank you.

About the Author

Jay Miller is a Software Engineer with Electronic Tracking Systems, a company dedicated to robbery prevention, apprehension, and recovery based in Carrollton, Texas. Jay has been working with .NET since the first beta's release and is co-author of Learn Microsoft Visual Basic.Net In a Weekend. Jay can be reached via email at jmiller@sm-ets.com.

Author: Jay Miller

Read article at Internet.com site

Featured Local Company

Acumium

608 310 9700 x 522
5133 West Terrace Drive Suite 300
Madison, , WI
http://www.acumium.com

Related Local Event
2008 Early Stage Symposium
Dates: 11/5/2008 - 11/6/2008
Location: Monona Terrace
Madison WI
View Details
Rate Article
     
Articles Insider

Rss   Delicious   Digg   Add To My Yahoo   Add To My Google   Bookmark   Search Plugin

Topics:
Advertising Engineering Home Services Retail & Consumer Services
Business Services Entertainment Industrial Goods & Services Software
Career Family Insurance Technology
Cars Financial Services Internet Telecommunications
Computer Hardware Food & Beverage Legal Transportation & Logistics
Construction Health Pets Travel
Education Home Electronics Real Estate Wedding