vb.net - Concatenate 2 variables -
how can make code working?
dim c integer = 0 icol = 0 reader.fieldcount dim col+c string = reader.getname(icol)) c = c + 1 next
thanks
you may use list<string>
well:
dim lst new list<string>(); icol = 0 reader.fieldcount - 1 lst.add(reader.getname(icol)); next
Comments
Post a Comment