Click here to Skip to main content
15,886,258 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: invert if : visual studio code helper Pin
raddevus4-Aug-20 6:04
mvaraddevus4-Aug-20 6:04 
GeneralRe: invert if : visual studio code helper Pin
Nelek4-Aug-20 8:18
protectorNelek4-Aug-20 8:18 
GeneralRe: invert if : visual studio code helper Pin
raddevus4-Aug-20 8:39
mvaraddevus4-Aug-20 8:39 
GeneralRe: invert if : visual studio code helper Pin
Jon McKee4-Aug-20 10:44
professionalJon McKee4-Aug-20 10:44 
GeneralRe: invert if : visual studio code helper Pin
raddevus4-Aug-20 11:40
mvaraddevus4-Aug-20 11:40 
GeneralRe: invert if : visual studio code helper Pin
Jon McKee4-Aug-20 12:11
professionalJon McKee4-Aug-20 12:11 
GeneralRe: invert if : visual studio code helper Pin
raddevus4-Aug-20 16:43
mvaraddevus4-Aug-20 16:43 
GeneralRe: invert if : visual studio code helper Pin
Richard Deeming4-Aug-20 23:41
mveRichard Deeming4-Aug-20 23:41 
I don't like the args.Length < 1 test - it's either going to be greater than or equal to 1, or equal to 0.

Just for fun, you could also introduce some C# 8 into the mix, and support multiple commands:
C#
static void Main(string[] args)
{
    if (args.Length == 0)
    {
        Console.WriteLine("Please provide 1 argument to indicate the command you want to run.\nUsage: getInfo <command-name>");
        return;
    }
    
    foreach (string arg in args)
    {
        Console.WriteLine(arg.ToLowerInvariant() switch
        {
            "os" => $"OS : {Environment.OSVersion}",
            "pwd" => $"The current directory is: {Environment.CurrentDirectory}",
            "cl" => $"Command line was: {Environment.CommandLine}",
            "sysdir" => $"System dir: {Environment.SystemDirectory}",
            "mname" => $"Machine name: {Environment.MachineName}",
            _ => $"Unknown command: '{arg}'",
        });
    }
}




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 2:14
mvaraddevus5-Aug-20 2:14 
GeneralRe: invert if : visual studio code helper Pin
Jon McKee12-Aug-20 11:14
professionalJon McKee12-Aug-20 11:14 
GeneralRe: invert if : visual studio code helper Pin
Richard Deeming12-Aug-20 22:18
mveRichard Deeming12-Aug-20 22:18 
GeneralRe: invert if : visual studio code helper Pin
Bernhard Hiller4-Aug-20 20:31
Bernhard Hiller4-Aug-20 20:31 
JokeRe: invert if : visual studio code helper Pin
Nelek4-Aug-20 21:44
protectorNelek4-Aug-20 21:44 
GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 2:09
mvaraddevus5-Aug-20 2:09 
GeneralRe: invert if : visual studio code helper Pin
obermd5-Aug-20 4:07
obermd5-Aug-20 4:07 
GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 4:23
mvaraddevus5-Aug-20 4:23 
GeneralRe: invert if : visual studio code helper Pin
Greg Utas5-Aug-20 4:22
professionalGreg Utas5-Aug-20 4:22 
GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 4:31
mvaraddevus5-Aug-20 4:31 
GeneralRe: invert if : visual studio code helper Pin
OriginalGriff5-Aug-20 5:24
mveOriginalGriff5-Aug-20 5:24 
GeneralRe: invert if : visual studio code helper Pin
raddevus5-Aug-20 8:15
mvaraddevus5-Aug-20 8:15 
GeneralRe: invert if : visual studio code helper Pin
Nelek5-Aug-20 8:51
protectorNelek5-Aug-20 8:51 
GeneralRe: invert if : visual studio code helper Pin
Jon McKee12-Aug-20 11:23
professionalJon McKee12-Aug-20 11:23 
GeneralRe: invert if : visual studio code helper Pin
Dan Neely10-Aug-20 8:57
Dan Neely10-Aug-20 8:57 
GeneralRe: invert if : visual studio code helper Pin
jsc4210-Aug-20 23:19
professionaljsc4210-Aug-20 23:19 
GeneralRe: invert if : visual studio code helper Pin
Greg Utas11-Aug-20 1:12
professionalGreg Utas11-Aug-20 1:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.