quick question: blank lines in c# asp.net code bad performance because of larger file size? or taken care of through compilation? compressing techniques available case?
well if talking having white spaces in code behind or c# code file not not counted compilation.
modern day compilers e.g .net framework compiler remove white spaces , other comments , punctuation while compiling code.
this process called tokenization; removes unwanted stuff code before compiling. remove meant not remove code base file not consider them compilation.
so in code when have ";" compiler consider end of line compilation , when next character meets consider new line compilation.
Comments
Post a Comment