question about string.format().
Posted
by Mike
on Stack Overflow
See other posts from Stack Overflow
or by Mike
Published on 2010-03-13T10:34:42Z
Indexed on
2010/03/13
10:45 UTC
Read the original article
Hit count: 441
c#
how string.format() can help to avoid using "+" in such statemet:
string statement =" SELECT DISTINCT titel as linieName" +
" FROM qry_Forecast_Taktzeiten" +
" WHERE linieName LIKE 'lin%';";
© Stack Overflow or respective owner