public static class Fnv1Hash
{
    public static uint ComputeHash32(IEnumerable<byte> bytes)
...

C# FNV-1 and FNV-1a Hash for 3...

by Ants, June 27, 2011 13:00, 10 refactorings, tagged with speed, clarity, FNV, DRY

There has to be a better wa...

F9a9ba6663645458aa8630157ed5e71e Talk
private static void Log(object message, MessageType type)
		{
			string str = message.ToString();
...

C# Line splitting optimization

by xeon06.myopenid.com, December 07, 2009 20:59, 3 refactorings, tagged with speed, C#, optimize, xna, lines

This is a console logging f...

55502f40dc8b7c769880b10874abc9d0 Talk
using System;
using System.Collections.Generic;
using System.Linq;
...

C# Cached IEnumerable<T>

by Charles Strahan, July 06, 2009 15:15, 6 refactorings, tagged with speed, C#, IEnumerable

Hello,

I created a this ...

A1e6f320dcdb6a0afd7fd19a1e5f932e Talk