Succinct code over verbose?
- by WeNeedAnswers
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.