When to use FOR-CASE (Foreach/switch in C#)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:50:41Z http://stackoverflow.com/feeds/question/335427 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c 1 When to use FOR-CASE (Foreach/switch in C#)? Jack Rice 2008-12-02T20:55:54Z 2008-12-12T16:13:42Z <p>I've found what seems to be the C# equivalent of a <a href="http://thedailywtf.com/Articles/The_FOR-CASE_paradigm.aspx" rel="nofollow">FOR-CASE</a> structure in a proyect I'm working on:</p> <pre><code>foreach (string param in params.Split(';')) { string[] parts = param.Split('='); string key = parts[0].Trim().ToLower(); string value = parts[1].Trim(); switch (key) { case "param1": this.param1 = value; break; case "param2": this.param2 = value; break; case "param3": this.param3 = value; break; case "param4": this.param4 = value; break; default: break; } } </code></pre> <p>(Variable names changed to protect the guilty.)</p> <p>How would you implement this code?</p> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/335441#335441 5 Answer by Guge for When to use FOR-CASE (Foreach/switch in C#)? Guge 2008-12-02T21:03:01Z 2008-12-02T21:03:01Z <p>I don't think the code in your question is anything like the code you linked to....</p> <p>The code in the question looks like something I might do if I wrote a command line tool. </p> <p>Am I stupid for not seeing whats wrong with the code in the question?</p> <p>An alternative is to use reflection to fill parameter value variables. I've done it that ways sometimes too.</p> <p>BTW: I once wrote a program in a script language that had switch as the only flow control mechanism and no gosub/return. The code in my program was structured a bit like the one you linked to. A massive switch on a sort of instruction pointer variable that got reassigned at the end of every case and an almost infinite loop around the switch. It got the job done.</p> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/335463#335463 3 Answer by Haoest for When to use FOR-CASE (Foreach/switch in C#)? Haoest 2008-12-02T21:12:31Z 2008-12-02T21:33:52Z <p>I see you that you already have multiple fields in your class that you use to hold the variables. In that case, what you are doing is fine. </p> <p>Otherwise, you can have 1 HashTable (maybe add in the <a href="http://www.csharp-station.com/Tutorials/Lesson11.aspx" rel="nofollow">C# indexor</a> as a twist) to hold all of them, and your loop will end up like this:</p> <pre><code>foreach (string param in params.Split(';')) { string[] parts = param.Split('='); string key = parts[0].Trim().ToLower(); string value = parts[1].Trim(); MyHashTable[key] = value; } </code></pre> <p>The problem with this approach is that you should only have 1 type of value. For example, if your param list can contain both string and int types, it makes the code messier, especially you need to perform error checking and validation and stuff. </p> <p>I personally would stick with what you already have. </p> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/335475#335475 1 Answer by Ricardo Villamil for When to use FOR-CASE (Foreach/switch in C#)? Ricardo Villamil 2008-12-02T21:15:23Z 2008-12-02T21:15:23Z <p>Not sure if I understand either but it sounds like you're complicating yourself. Don't reinvent the wheel, use BCL classes as much as you can, these classes are proven to work efficiently and save you lots of time. Sounds like you could implement it with some sort of Dictionary&lt;,> along with, like Guge suggested, Reflection.</p> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/335617#335617 3 Answer by Jon B for When to use FOR-CASE (Foreach/switch in C#)? Jon B 2008-12-02T22:00:30Z 2008-12-02T22:00:30Z <p>You could use reflection for this:</p> <pre><code>Type t = this.GetType(); foreach (string param in params.Split(';')) { string[] parts = param.Split('='); string key = parts[0].Trim().ToLower(); string value = parts[1].Trim(); t.GetProperty(key).SetValue(this, value, null); } </code></pre> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/335633#335633 -2 Answer by Andrew Cowenhoven for When to use FOR-CASE (Foreach/switch in C#)? Andrew Cowenhoven 2008-12-02T22:04:10Z 2008-12-02T22:04:10Z <p>Or Regex:</p> <pre><code>string parms = "param1=1;param2=2;param3=3"; string[] parmArr = parms.Split(';'); string parm1 = Regex.Replace(parmArr[0], "param1=", ""); string parm2 = Regex.Replace(parmArr[1], "param2=", ""); string parm3 = Regex.Replace(parmArr[2], "param3=", ""); </code></pre> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/335652#335652 2 Answer by GalacticCowboy for When to use FOR-CASE (Foreach/switch in C#)? GalacticCowboy 2008-12-02T22:11:56Z 2008-12-02T22:26:29Z <p>For what it's worth, the WTF article was a WTF because its outer loop was completely useless, as noted in the article - it was just as easy, and more direct, just to set an index variable directly than to loop and test it.</p> http://stackoverflow.com/questions/335427/when-to-use-for-case-foreach-switch-in-c/363207#363207 0 Answer by Coderer for When to use FOR-CASE (Foreach/switch in C#)? Coderer 2008-12-12T16:13:43Z 2008-12-12T16:13:43Z <p>I actually think the OP's code is fine. It's not perfect -- there might be simpler or cleaner ways to do it, but it effectively allows for readable mappings between member/property names and input-parameter names. It leaves your properties strongly typed (unlike the hashmap/dictionary solutions, unless your class has only one type for all its properties...) and gives you one fairly-obvious place to fix or add mappings.</p>