Nonsense

C# Musings...

I had a few ideas for C# constructs, so I thought I might as well write them down. Perhaps, some day, someone can tell me why these don't exist... Making Generics More Generic Several times I've been frustrated by the fact that Func<TResult> has a bunch of variants. Wouldn't it be cool it you could […]

More

Not a Function

function myFunction(type:int):void { switch (type) { ... case AWESOME: { function doSomething():void { ... }   ...   doSomething(); } ... } }function myFunction(type:int):void { switch (type) { ... case AWESOME: { function doSomething():void { ... } ... doSomething(); } ... } } Error: doSomething is not a function.

More

Weekend Update

I have so many blog posts in my head--Itsy updates, a spritesheet tool I've been working on, a neato Flash optimization I discovered, some thoughts on the current state of gaming--more stuff than I have time to write. In fact, I'm also pecking away at the novel I began writing in November. I may be […]

More