Skip to content

Instantly share code, notes, and snippets.

View coxsim's full-sized avatar

Simon Cox coxsim

  • MonetaGo
  • Singapore
View GitHub Profile
@coxsim
coxsim / TestFoo.cs
Created May 24, 2011 03:19
Loop variable not getting collected
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Foo GetFoo(int i)
{
if (i == 0)
@coxsim
coxsim / LargeDictionary.cs
Created May 5, 2011 06:15
Multi level dictionary to avoid allocations on the LOH
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.ConstrainedExecution;
using System.Security;
using C5Lib = C5;
namespace Collections