Created
March 1, 2012 08:08
-
-
Save codereflection/1948217 to your computer and use it in GitHub Desktop.
Here's another WTF gem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And this is the whole file, complete, in it's entirety. >.>