我在VB6下面的代碼 - dim iFreeFile as integer
iFreeFile = FreeFile
Open tSendFileName For Output As #iFreeFile
我需要將其轉換爲C#,但我有困難。我正在嘗試使用StreamWriter,但遇到了不知道在哪裏寫入或如何插入文件的問題,因爲它不在我的電腦上。 有關如何將此代碼轉換爲C#的任何想法?由
我使用VS2010 當我轉換的代碼轉換VB6到VB.NET,我發現的東西,我不不要理解代碼在做什麼以及如何轉換它的意義。 i = 0
While Not rd.EOF
cobTmp.Items.Insert(i, rd.Fields("d").Value)
VB6.SetItemData(cobTmp, i, rd.Fields("r").Value)
I
我有在VB6的代碼 Private Sub pause(ByVal interval As Variant)
Dim Current As Variant
Current = Timer
Do While Timer - Current < Val(interval)
DoEvents
Loop
End Sub
如何轉換在vb.net?我