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:

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
Post a Comment