Skip to content

Instantly share code, notes, and snippets.

View mariodivece's full-sized avatar

Mario Di Vece mariodivece

View GitHub Profile
@mariodivece
mariodivece / GenericServer.cs
Created March 25, 2014 19:47
A (WIP) generic server using sockets
/// <summary>
/// Author: Mario A. Di Vece - mario@unosquare.com
/// Version 1.0b
/// Generic Server toolkit for quick implementation of socket communications.
/// Unosquare, LLC (c) 2013 - MIT License
/// You are free to use this code. Please give me some credit if you use it.
/// </summary>
namespace Unosquare.Labs.Sockets
{
using System;
@mariodivece
mariodivece / CsvReader.cs
Last active April 6, 2017 11:17
Very simple CSV file reader. Not to be used for very large files.
/// <summary>
/// Author: Mario Di Vece <mario@unosquare.com>
/// Date: 3/19/2014
/// Updated: 9/18/2014
/// License: MIT
/// </summary>
namespace Unosquare.Utils
{
using System;
using System.Collections.Generic;