Skip to content

Instantly share code, notes, and snippets.

@nikolaZ
nikolaZ / gist:5820965
Created June 20, 2013 07:53
QuickSorting not working.
namespace SortingHomework
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Quicksorter<T> : ISorter<T> where T : IComparable<T>
{