Skip to content

Instantly share code, notes, and snippets.

@rssoft2
rssoft2 / ConsolePortScanner.cs
Created August 9, 2019 11:35 — forked from jonlabelle/ConsolePortScanner.cs
Simple async C# Open Port Network Scanner
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Net.Sockets;
namespace ConsolePortScanner
{
class MainClass