2D Head with a clock as an eyeball.
 Wednesday, July 11, 2007

I often get to play the maintenance role in my coding life, and I actually enjoy it, as I get to see how others tackle certain problems. I also like to challenge myself by fixing bugs with the smallest footprint possible. In doing so, I find a lot of common things that bring down the 'maintainability' of a class. I thought I'd share some pain that I encountered today.

Designer Death

All too often I find code that roughly translates to this example:

internal class MyForm : System.Windows.Forms.Form

   MyClass _myClass; 

   public MyForm() 
   { 

      _myClass = new MyClass(); 
      _myClass.MyPropertyChanged += DodgySideEffectEventDrivenCode; 
      _myClass.MyProperty = new object(); 
   } 

   internal void DodgySideEffectEventDrivenCode(Object sender, EventArgs e) 
   { 
      //Lets do something that requires, ooh I dunno....SQL access 
   }
}

I won't go into all the other reasons why this could be seen as bad code, but for the purpose of the example, changing DodgySideEffectEventDrivenCode to look like this can save a whole lotta WSOD's…

internal void DodgySideEffectEventDrivenCode(Object sender, EventArgs e) 

   if (this.DesignMode) return
   //Lets do something that requires SQL access, but only if we aren't in design mode
}

Poor Private Properties

The following is an example of a useless property. There are precious few situations where this would be beneficial to a class.

private static CultureInfo CC

   get { return CultureInfo.CurrentCulture; }
}

Why not use a private readonly field? While I admit there is the odd place where you might insist on a private readonly property, it is the exception rather than the rule. Now, I know Properties look cooler from the Intellisense dropdown, but c'mon, surely this is saving you some time:

private readonly static CultureInfo CC = CultureInfo.CurrentCulture;

Personally, I think the proof is in the IL pudding…

.field private static initonly class [mscorlib]System.Globalization.CultureInfo CC

Compare that to the IL of a readonly property get method:

.method private hidebysig specialname instance class [mscorlib]System.Globalization.CultureInfo get_CC() cil managed
{
    .maxstack 1
    .locals init (
        [0] class [mscorlib]System.Globalization.CultureInfo CS$1$0000)
    L_0000: nop
    L_0001: call class [mscorlib]System.Globalization.CultureInfo [mscorlib]System.Globalization.CultureInfo::get_CurrentCulture()
    L_0006: stloc.0
    L_0007: br.s L_0009
    L_0009: ldloc.0
    L_000a: ret
}

Boolean Badness or Enumerate Early

Sometimes coding isn't enough; sometimes you need to express your intent explicitly. Take the following function declaration which clearly does not:

internal void SetUIState(bool value)

and its usage:

SetUIState(true);

Can you tell how this function will work? Personally I like comments and documentation – and they would help, but self documenting code is worth a page of English documentation. For example:

internal enum UIState

   enabled, 
   disabled,
}

internal void SetUIState(UIState state)

Combined with a decent IDE, the usage and effect becomes apparent:

SetUIState(UIState.enabled);

An even simpler approach would be to just name the function to imply the usage of the state parameter in the first place. I.E

    EnableUI(true);

Personal choice comes into this a lot, but I think we can all agree that it's all about taking care with naming.

On that….

Unchanged UI

If I ever see another TextBox control named 'TextBox1' I'm going to have to hurt somebody. Seriously though, if you have labels and other miscellaneous controls laying about that you don't need to name because you never reference them in code, and you are using VS 2005 or greater then consider the following approach:

  • Use your control key and select the lot of them.
  • Move over to the properties window and set the GenerateMember property to false.

This will keep the controls initialization local to the InitializeComponents routine, thus reducing the clutter in Intellisense and other areas in the IDE quite significantly.

For the rest of your controls and objects, pick a naming convention, and stick to it like glue.


Filed under:  |  | 
| Comments [0] | Trackback
Tracked by:
http://blastpr.com/wiki/js/pages/celexa/index.html [Pingback]
http://blastpr.com/wiki/js/pages/rainbow-brite/index.html [Pingback]
http://blastpr.com/wiki/js/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/synthroid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/synthroid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/tramadol/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/wellbutrin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celexa/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/viagra/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/hoodia/index.html [Pingback]
http://blastpr.com/wiki/js/pages/claritin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/zoloft/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/prozac/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celebrex/index.html [Pingback]
http://blastpr.com/wiki/js/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/melatonin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/tramadol/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/ultram/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lipitor/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cialis/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/claritin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/clomid/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/nexium/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/nexium/index.html [Pingback]
http://blastpr.com/wiki/js/pages/viagra/index.html [Pingback]
http://slaterjohn.com/downloads/2col/66689432/index.html [Pingback]
http://plantmol.com/docs/80639343/index.html [Pingback]
http://discussgod.com/cpstyles/docs/62161481/index.html [Pingback]
http://swellhead.netswellhead.net/docs/42306518/index.html [Pingback]
http://martinrozon.com/images/photos/docs/75270452/index.html [Pingback]
http://entartistes.ca/images/images/docs/65934120/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/25746442/index.html [Pingback]
http://hrvatska.biz/wp-includes/js/docs/80692203/index.html [Pingback]
http://thebix.com/includes/compat/docs/15132509/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/37348396/index.html [Pingback]
http://temerav.com/images/menu/20420171/index.html [Pingback]
http://jivest2006.com/docs/76826750/index.html [Pingback]
http://thebix.com/includes/compat/docs/15870923/index.html [Pingback]
http://discussgod.com/cpstyles/docs/43932298/index.html [Pingback]
http://martinrozon.com/images/photos/docs/43274485/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/73486930/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/18769945/index.html [Pingback]
http://witze-humor.de/templates/images/docs/69259068/index.html [Pingback]
http://lecouac.org/ecrire/lang/docs/49649526/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/56008043/index.html [Pingback]
http://add2rss.com/img/design/docs/90861918/index.html [Pingback]
http://coolioness.com/attachments/docs/60340594/index.html [Pingback]
http://entartistes.ca/images/images/docs/81367526/index.html [Pingback]
http://discussgod.com/cpstyles/docs/25383456/index.html [Pingback]
http://thebix.com/includes/compat/docs/29852280/index.html [Pingback]
http://coolioness.com/attachments/docs/58150246/index.html [Pingback]
http://ncdtnanotechportal.info/generator/docs/87198700/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/34320152/index.html [Pingback]
http://realestate.hr/templates/css/docs/71546796/index.html [Pingback]
http://pddownloads.com/docs/21991908/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/87090382/index.ht... [Pingback]
http://allfreefilms.com/wp-includes/js/46226552/index.html [Pingback]
http://pddownloads.com/docs/15972574/index.html [Pingback]
http://pddownloads.com/docs/08296030/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/68291686/index.ht... [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/54089144/index.ht... [Pingback]
http://thejohnslater.com/pix/img/docs/42082955/index.html [Pingback]
http://thebix.com/includes/compat/docs/10152421/index.html [Pingback]
http://pddownloads.com/docs/66275653/index.html [Pingback]
http://temerav.com/images/menu/96509501/index.html [Pingback]
http://witze-humor.de/templates/images/docs/83157240/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/60974094/index.ht... [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/52060005/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/84431573/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/44378735/index.html [Pingback]
http://legambitdufou.org/Library/docs/04618667/index.html [Pingback]
http://temerav.com/images/menu/91084644/index.html [Pingback]
http://discussgod.com/cpstyles/docs/73291253/index.html [Pingback]
http://easytravelcanada.info/js/pages/5/hoodia/ [Pingback]
http://easytravelcanada.info/js/pages/2/celexa/ [Pingback]
http://sevainc.com/bad_denise/img/8/paxil/ [Pingback]
http://sevainc.com/bad_denise/img/8/prilosec/ [Pingback]
http://birds.sk/img/viagra/ [Pingback]
http://easymexico.info/images/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/3/claritin/ [Pingback]
http://easytravelcanada.info/js/pages/9/rainbow-brite/ [Pingback]
http://inatelevizia.sk/ad/img/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/2/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/5/effexor/ [Pingback]
http://easytravelcanada.info/js/pages/9/prozac/ [Pingback]
http://easytravelcanada.info/js/pages/12/wellbutrin/ [Pingback]
http://abaffydesign.com/la/img/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/3/clomid/ [Pingback]
http://easytravelcanada.info/js/pages/6/lexapro/ [Pingback]
abaffy.org/la/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/7/nexium/ [Pingback]
http://jemnemelodierecords.sk/img/viagra/ [Pingback]
http://simpletravelcanada.info/js/pages/27277365/ [Pingback]
http://easytravelcanada.info/js/pages/4/cymbalta/ [Pingback]
http://easytravelcanada.info/js/pages/8/prilosec/ [Pingback]
http://ina-tv.sk/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/1/celebrex/ [Pingback]
http://easytravelcanada.info/js/pages/3/clomid/ [Pingback]
http://sevainc.com/bad_denise/img/12/zoloft/ [Pingback]
http://sevainc.com/bad_denise/img/5/effexor/ [Pingback]
http://easytravelcanada.info/js/pages/11/ultram/ [Pingback]
http://sevainc.com/bad_denise/img/2/celexa/ [Pingback]
http://easytravelcanada.info/js/pages/4/coumadin/ [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/chyna-porn-movie.html [Pingback]
http://odin.net/images/pages/35694472/bikini-calenders.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/andy-kim-baby-i-love-you.h... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/porn-postcards-free.html [Pingback]
http://odin.net/images/pages/35694472/teen-babysitting-xxx.html [Pingback]
http://odin.net/images/pages/35694472/babe-like-swim-video.html [Pingback]
http://odin.net/images/pages/35694472/jenny-maccarthy-nude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/hentai-spider-man.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/blonde-porn-star.html [Pingback]
http://odin.net/images/pages/52807681/marathon-florida-webcam.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/erotic-literature-for-women... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/adult-free-gay-porn.html [Pingback]
http://odin.net/images/pages/52807681/the-girls-next-door-centerfold.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/mmf-free-sex-sites.html [Pingback]
http://odin.net/images/pages/35694472/free-amauter-porn.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/tylene-buck-bikini-movies.... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/kim-basinger-shower-sex-scn... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/erotic-pictures-of-oral-se... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/sick-adult-fun-stuff.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/preview-girls-gone-wild-cli... [Pingback]
http://odin.net/images/pages/52807681/charleston-swingers.html [Pingback]
http://odin.net/images/pages/52807681/are-baby-walkers-bad.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/cards-adult-humor.html [Pingback]
http://odin.net/images/pages/35694472/anglina-jolie-nude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/hot-russian-models-teen-age... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/debra-wilson-nude-pics.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/the-internet-is-for-porn.h... [Pingback]
http://odin.net/images/pages/35694472/baby-bop-photos.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/nude-sleeping-sex-xxx.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/asian-massage-ct.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/bikini-dare-pics.html [Pingback]
http://odin.net/images/pages/52807681/ymca-baby-sitting-classes.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/teen-young-bbw.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/mature-fucking-movies.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/my-little-girl-song.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/sparkle-sweater-girls.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/index.html [Pingback]
http://odin.net/images/pages/52807681/hot-sexy-horny-slut-fucking.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/short-stories-moral-lesson.... [Pingback]
http://odin.net/images/pages/35694472/hottest-movie-sex-scenes.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/mother-and-daugther-sex-st... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/inspirational-business-sta... [Pingback]
http://odin.net/images/pages/35694472/downloadable-porn-videos.html [Pingback]
http://odin.net/images/pages/35694472/candace-von-fuck.html [Pingback]
http://odin.net/images/pages/35694472/danni-hunt-in-nude.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/sexy-makeup-pics.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/list-of-teen-sites.html [Pingback]
http://odin.net/images/pages/52807681/cheerleaders-sex-towel.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/teenage-girl-nude.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/oral-sex-instruction-pictu... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/old-film-girl-in-love-with-... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/xpress-train-hentai-movie.h... [Pingback]
Comments are closed.
© Copyright 2009 Jim Burger