[求助]VB转C#
由于没有学过VB或者VB.NET现在手头上有一段VB代码我要用C#编写他。
如下:
Do
if instr(data,schar) > 0 then '参数数量大于1
pos = instr(data,schar)
ins = mid(data,1,pos-1)
if ins = "" then
else
sqlstr = "insert into temp (data) values ('" & ins & " ')"
conn.execute(sqlstr) '执行sql语句
data = mid(data,pos+1)
end if
else '参数数量等于1
if data = "" then
else
sqlstr = "insert into temp (data) values ('" & data & " ')"
conn.execute(sqlstr)
end if
Exit Do
end if
Loop
改写为C#语言。谢谢各位帮忙