Skip to content

Instantly share code, notes, and snippets.

View osnipezzini's full-sized avatar
🏠
Working from home

Osni Pezzini Junior osnipezzini

🏠
Working from home
  • SOTech Sistemas
  • Blumenau
View GitHub Profile
@wildbook
wildbook / WebSocketServer.cs
Created November 24, 2018 21:37
Very simple websocket server in C#
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.Threading;
public class WebSocketServer
{
public readonly List<WebSocketSession> Clients = new List<WebSocketSession>();