1
100
Has anybody read Steve Maguire's book "Writing solid code"?
Do you think that the ideas in this book are not applicable in c# language?
Does anybody find
if(2 == i)
istead of
if(i == 2)
as unnetural and does it lead to more bugs in the code because of it makes
programms hard to read.
And my last question is: "Do you think that using boolean expressions
written in this way, asserts and all other *tricks* mentioned in the book is
bringing c/c++ *idioms* in the c# language?"
B\rgds
100
Do you think that the ideas in this book are not applicable in c# language?
Does anybody find
if(2 == i)
istead of
if(i == 2)
as unnetural and does it lead to more bugs in the code because of it makes
programms hard to read.
And my last question is: "Do you think that using boolean expressions
written in this way, asserts and all other *tricks* mentioned in the book is
bringing c/c++ *idioms* in the c# language?"
B\rgds
100