Hi,
Will the compiler optimize pretty formatted strings, or will that code run slower than strings that are not divided in a readable way?
for example
string sql =
"select * " +
"from person " +
"where id = :id";
or
string sql = "select * from person where id = :id";
This is just a small example. You know how complicated the sql can get.