c# 4.0 - How to escape the '@' symbol in c#? -


i'm trying display printed document @ sign on it, problem there @ sign can't rid of. tried backslashes , double @ sign, it's still there. see image:

enter image description here

here's code:

for (int = 0; <= n; i++)         {             string secondvalue = item[i, 0] + "            " +item[i, 1] + " @"+item[i, 2] +"                     "+ item[i, 3];             graphic.drawstring(secondvalue, font, new solidbrush(color.black), startx, starty + offset);             offset = offset + 35;                 } 

how can rid of @ sign below list?

it appears nth row contains nulls. try changing loop condition i <= n i < n.


Comments

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -