Showing posts with label Best Practice. Show all posts
Showing posts with label Best Practice. Show all posts

Friday, April 1, 2011

Selection - Enum

enum ExpenseCategory
{
LocalTravel = 0,
Medical = 1,
Others = 2
}


Load these values with Name into dropdown selection

EnumGetNames(typeof(ExpenseCategory));

Wednesday, June 3, 2009

Coding Best Practise

I come across a very good article on best practice and common issues.