Skip to content

Instantly share code, notes, and snippets.

@adrctr
adrctr / ConsolePortScanner.cs
Created September 19, 2018 07: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