I’m back in DotNetNuke mode and while doing some refresher reading and whatnot I came across this tutorial. It’s quite good. Much better written and
Category: C#
Logging Out of Facebook with C# SDK
Logging out of Facebook programmatically turns out to be much more problematic that you would think. I posted the question at StackOverflow asking if anyone
Open Source Wars: GeckoFX and MozNet
Well, it appears I’ve been caught in the cross-fire in some open source wars. A number of years ago, SkyBound released GeckoFX as an wrapper
Getting the Album ID with the Facebook C# SDK
I really shouldn’t drink & post like last night… Anyways, cynicism and rantiness wane as sobriety returns, and here’s some code that illustrates uploading a
WTF is an ID for?
I’m a complete and total bigot. Unmitigated, complete, total bigot. The web sucks. And web APIs suck too. Especially when the documentation is non-existant or
A Kick-Ass Article on Asynchronous Operations
As I am virtually incapable of doing anything the same way twice, I had to go out and find another way to deal with blocking
Passing Information Between Winforms the Sneaky Way
There are many ways to pass data between form in .NET. This article, Passing Data Between Forms, at the Code Project is an excellent one
Iterating Over a DirectoryInfo is Fast!
DirectoryInfo is really very fast to iterate through. While working on some software, I’ve been experimenting with different approaches to find the most efficient and
if (false) { behave nice; } else { freak out; }
Using “false” in a conditional causes all variables in the else clause to return nothing while debugging. Huh? Yep. Here’s a screenshot of inside an
Boxing and Unboxing in C#
While working on some threading stuff, I came across an excellent article on boxing and unboxing in C#. The author goes into great detail showing