Quick example: why coding standards must be in place

Posted by DigiMortal on ASP.net Weblogs See other posts from ASP.net Weblogs or by DigiMortal
Published on Wed, 31 Mar 2010 00:38:28 GMT Indexed on 2010/03/31 0:43 UTC
Read the original article Hit count: 635

One quick example why coding standards must be in place. Take a look at the following code – property names are changed but not anything else.


public string Property1 { get; set; }

 

public string Property2

{

    get;

    set;

}

 

public string Property3

{

    get; set;

}


And yes – it is real-world example.

© ASP.net Weblogs or respective owner

Related posts about General Software Developm

Related posts about Readable code