Skip to content

Instantly share code, notes, and snippets.

@sgmunn
sgmunn / ListDiff.cs
Created September 6, 2012 06:08 — forked from praeclarum/ListDiff.cs
Computes a diff between two different IEnumerables. It's better than anything you have ever seen. Ever.
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using System.IO;
namespace TheBestAppEver
{
/// <summary>
/// The type of <see cref="ListDiffAction{S,D}"/>.
@sgmunn
sgmunn / UIDateFieldTestViewController.cs
Created May 1, 2012 11:05
Event Handler in MonoTouch not allowing objects to be collected
using System;
using System.Drawing;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
namespace UIDateFieldTest
{
public partial class UIDateFieldTestViewController : UIViewController
{