public static class Fnv1Hash
{
public static uint ComputeHash32(IEnumerable<byte> bytes)
...
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...
using System; using System.Collections.Generic; using System.Linq; ...
C# Cached IEnumerable<T>
Hello,
I created a this ...
There has to be a better wa...