摘要: Imports System.IOModule Module1 Public Structure NewRmsLog Public TimeOne As String Public TimeTwo As String Public TimeThree As String Public TimeFou 阅读全文
posted @ 2021-01-29 04:46 最云间 阅读(56) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2021-01-27 00:18 最云间 阅读(39) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-01-21 07:33 最云间 阅读(190) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-01-19 23:36 最云间 阅读(252) 评论(0) 推荐(0)
摘要: Public Class Form1 Private Sub 输入(数值 As String) If TextBox1.Text = "0" Then TextBox1.Text = 数值 Else TextBox1.Text &= 数值 End If End Sub Dim 上一次的值 As Do 阅读全文
posted @ 2021-01-18 23:42 最云间 阅读(273) 评论(0) 推荐(1)
摘要: Public Class LoginForm1 ' TODO: 插入代码,以使用提供的用户名和密码执行自定义的身份验证 ' (请参阅 https://go.microsoft.com/fwlink/?LinkId=35339)。 ' 随后自定义主体可附加到当前线程的主体,如下所示: ' My.Use 阅读全文
posted @ 2021-01-14 00:34 最云间 阅读(118) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2021-01-13 23:42 最云间 阅读(404) 评论(0) 推荐(0)
摘要: 从1加至100 C# while循环 do...while循环 while([布尔表达式]) ()中布尔表达式为True时, do 先执行一次大括号内的语句块 { 执行{}内的语句块, { 再到while中循环 [语句块] False时跳出大括号 语句块 while循环中为false时跳出大括号 } 阅读全文
posted @ 2021-01-13 23:01 最云间 阅读(128) 评论(0) 推荐(0)