Skip to content

Instantly share code, notes, and snippets.

@bschwind
bschwind / Client.cs
Created April 14, 2012 01:43
Implements a simple TCP client
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
namespace GraphicsToolkit.Networking
{
@bschwind
bschwind / TCPServerExample.cs
Created April 14, 2012 01:42
TCP Server Example
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using GraphicsToolkit.Networking;
namespace TestServer
{
public class Program
{
@bschwind
bschwind / TCPClientExample.cs
Created April 14, 2012 01:40
TCP Client Example
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using GraphicsToolkit.Networking;
namespace TestClient
{
public class Program
{