Succinct code over verbose?

Posted by WeNeedAnswers on Stack Overflow See other posts from Stack Overflow or by WeNeedAnswers
Published on 2010-03-26T13:40:58Z Indexed on 2010/03/26 13:43 UTC
Read the original article Hit count: 252

Filed under:

With C# becoming more and more declarative and becoming the new Swiss army knife of Programming. Is it better to be succinct thus reducing the actual code base, or long winded but verbose.

Is there a performance issue with succinct or does being succinct improve performance because your putting more of your code in the hands of the compiler. (LINQ being an example when used correctly).

I know that verbosity should override succinct where code would become less readable, but is this a good idea when your style could affect the performance.

© Stack Overflow or respective owner

Related posts about c#