摘要:
Imports System.IOModule Module1 Public Structure NewRmsLog Public TimeOne As String Public TimeTwo As String Public TimeThree As String Public TimeFou 阅读全文
摘要:
Imports System.IOModule Module1 Sub Main() Using sr As New StreamReader("G:\RMS_LOG.log") Using sw As New StreamWriter("RMSLOGTEST.csv") Dim line As S 阅读全文
摘要:
Public Class Form1 Private Sub 输入(数值 As String) If TextBox1.Text = "0" Then TextBox1.Text = 数值 Else TextBox1.Text &= 数值 End If End Sub Dim 上一次的值 As Do 阅读全文
摘要:
while循环 while 条件 条件为true时执行语句块 语句块 false时跳出 End while Dim a As Integer = 0, sum As Integer = 0 While a < 100 a += 1 sum += a End While Console.WriteLi 阅读全文