Click here to Skip to main content
15,889,281 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.

 
JokeRe: Threading horror PinPopular
notmasteryet15-Dec-08 15:40
notmasteryet15-Dec-08 15:40 
GeneralRe: Threading horror Pin
Lutosław16-Dec-08 7:13
Lutosław16-Dec-08 7:13 
GeneralRe: Threading horror Pin
geoffs16-Dec-08 19:43
geoffs16-Dec-08 19:43 
GeneralIterating an Enum? Pin
justastupidgurl13-Dec-08 5:05
justastupidgurl13-Dec-08 5:05 
GeneralRe: Iterating an Enum? Pin
PIEBALDconsult13-Dec-08 5:54
mvePIEBALDconsult13-Dec-08 5:54 
GeneralRe: Iterating an Enum? Pin
justastupidgurl13-Dec-08 20:24
justastupidgurl13-Dec-08 20:24 
GeneralRe: Iterating an Enum? Pin
PIEBALDconsult14-Dec-08 5:44
mvePIEBALDconsult14-Dec-08 5:44 
GeneralRe: Iterating an Enum? [modified] Pin
notmasteryet15-Dec-08 4:11
notmasteryet15-Dec-08 4:11 
You are right. Building of lookup table improves performance.

static Dictionary<string, StopBits> parsedStopBits = new Dictionary<string, StopBits>();

static ClassName()
{
    foreach (StopBits sb in Enum.GetValues(typeof(StopBits)))
    {
        parsedStopBits.Add(sb.ToString(), sb);
    }
}

static StopBits stopBitsFromString3(string stopBitsAsString)
{
    StopBits result;
    if (!parsedStopBits.TryGetValue(stopBitsAsString, out result))
        result = StopBits.None;
    return result;
}


Difference between performance of this code and Enum.Parse one is 10 times faster. Difference between perfromance of this code and horror one is 100 times faster.

It is not multiple return you should worry about. It's try-catch. If non-enum value name will be passed in the stopBitsFromString2 function, it's performance will be the same as stopBitsFromString's. Knowing when not to use try-catch is priceless. Smile | :)

modified on Monday, December 15, 2008 12:32 PM

GeneralRe: Iterating an Enum? Pin
PIEBALDconsult15-Dec-08 11:01
mvePIEBALDconsult15-Dec-08 11:01 
GeneralHow to be popular among your colleagues PinPopular
notmasteryet11-Dec-08 15:30
notmasteryet11-Dec-08 15:30 
GeneralRe: How to be popular among your colleagues Pin
Thomas Weller11-Dec-08 20:15
Thomas Weller11-Dec-08 20:15 
GeneralRe: How to be popular among your colleagues Pin
Mycroft Holmes11-Dec-08 21:58
professionalMycroft Holmes11-Dec-08 21:58 
GeneralRe: How to be popular among your colleagues Pin
QuiJohn12-Dec-08 3:18
QuiJohn12-Dec-08 3:18 
GeneralRe: How to be popular among your colleagues Pin
Krirk26-Jan-09 23:09
Krirk26-Jan-09 23:09 
JokeRe: How to be popular among your colleagues Pin
notmasteryet27-Jan-09 5:55
notmasteryet27-Jan-09 5:55 
GeneralDo not trust a computer... PinPopular
notmasteryet11-Dec-08 12:51
notmasteryet11-Dec-08 12:51 
GeneralRe: Do not trust a computer... Pin
Lutosław12-Dec-08 9:57
Lutosław12-Dec-08 9:57 
GeneralAvoid return statement in the middle - horror or not? Pin
Georgi Atanasov5-Dec-08 12:01
Georgi Atanasov5-Dec-08 12:01 
GeneralRe: Avoid return statement in the middle - horror or not? PinPopular
Robert.C.Cartaino5-Dec-08 14:32
Robert.C.Cartaino5-Dec-08 14:32 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
John M. Drescher11-Dec-08 8:24
John M. Drescher11-Dec-08 8:24 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
PIEBALDconsult5-Dec-08 15:07
mvePIEBALDconsult5-Dec-08 15:07 
General[Message Deleted] Pin
Robert.C.Cartaino6-Dec-08 5:47
Robert.C.Cartaino6-Dec-08 5:47 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
harold aptroot6-Dec-08 6:48
harold aptroot6-Dec-08 6:48 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
Robert.C.Cartaino6-Dec-08 11:52
Robert.C.Cartaino6-Dec-08 11:52 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
harold aptroot6-Dec-08 12:10
harold aptroot6-Dec-08 12:10 

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.