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

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -