TX不要扫描你的硬盘就知道360在运行,技术活,很简单的。至于这场争论本人保持沉默! VB6 Option Explicit Private Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long Private Sub Command1_Click() Dim h As Long h = GetModuleHandle("safemon.dll") If h <> 0 Then MsgBox "您的程序已被360监控." Else MsgBox "没发现360在监控你。" End If End Sub C# using System; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } [System.Runtime.InteropServices.DllImport("kernel32.dll")] public static extern int GetModuleHandle(string ModuleName); private void button1_Click(object sender, EventArgs e) { int handle = GetModuleHandle("safemon.dll"); if (handle != 0) MessageBox.Show("您的程序已被360监控"); else MessageBox.Show("没发现360在监控你"); } } }