TestForm.cs 435 B

12345678910111213141516171819
  1. using System;
  2. using System.Windows.Forms;
  3. using Y.Utils.WindowsUtils.InfoUtils;
  4. namespace Oreo.NetMonitor.Views
  5. {
  6. public partial class TestForm : Form
  7. {
  8. public TestForm()
  9. {
  10. InitializeComponent();
  11. }
  12. private void TestForm_Load(object sender, EventArgs e)
  13. {
  14. var a = NetProcessTool.GetTcpConn();
  15. var b = NetProcessTool.GetUdpConn();
  16. }
  17. }
  18. }