Skip to content

Instantly share code, notes, and snippets.

@codereflection
Created March 1, 2012 08:08
Show Gist options
  • Save codereflection/1948217 to your computer and use it in GitHub Desktop.
Save codereflection/1948217 to your computer and use it in GitHub Desktop.
Here's another WTF gem
// OK, WTF is with ALL of these damn usings that are NOT EVEN USED. IMPORT ALL THE THINGS!
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
// Seriously, W T F.
namespace MeaninglessNamespace
{
public enum ImportStatus
{
None = 0,
Edited = 1,
Uploaded = 2,
Error = 3,
}
}
@codereflection
Copy link
Author

And this is the whole file, complete, in it's entirety. >.>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment