为什么小红伞报毒?
今天写了个程序很简单的代码如下:Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If TextBox1.Text.Length = 0 Then '这里是关键
button1.Visible = False
Else : button1.Visible = True
End If
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
If TextBox1.Text.Length = 0 Then
button1.Visible = False
Else : button1.Visible = True
End If
End Sub
End Class
可是发布的时候小红伞却报毒了,不知为什么,好像是tr/drop trojean 木马或者是恶意软件,我不明白为什么一个简简单单的程序,小红伞就报毒,何况我还没有达到编写病毒的水平!求高手解释一下!