active questions tagged coding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T01:06:28Z http://stackoverflow.com/feeds/tag/coding http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1927933/does-resharper-make-you-lazy 0 Does resharper make you lazy? ForeverDebugging 2009-12-18T12:25:43Z 2009-12-18T13:59:15Z <p>I've been looking at using resharper and from the reviews I've seen, people who start using it never go back.</p> <p>I'm wondering if using resharper helps you pick up errors when looking at code without resharper, or does it decrease this ability becaues you get use to relying on resharper to identify problems?</p> http://stackoverflow.com/questions/1914109/resharper-power-toy-zen-coding 1 Resharper Power toy Zen Coding johnz 2009-12-16T11:32:54Z 2009-12-16T19:56:23Z <p>I have tried Resharper Power toy Zen Coding and found it can only generate code in one line, can it generate formatted code.</p> <p>for example i type in </p> <p><strong>ul>li*3</strong></p> <p>it generate: </p> <p><code>&lt;ul&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;</code></p> <p>i want it format to:</p> <pre><code>&lt;ul&gt; &lt;li&gt;&lt;/li&gt; &lt;li&gt;&lt;/li&gt; &lt;li&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/1882047/convention-result-and-code-error-c-int-foo 0 Convention result and code error C++ int foo (...) AskMan 2009-12-10T16:08:50Z 2009-12-10T16:48:48Z <p>In Linux for example when i use batch if error code is 0 thats good, but what is the convention in C++ ?</p> <p>when int (or bool) is equal to one we say that's true, but what must be the return of such function in C++ ? </p> http://stackoverflow.com/questions/105504/is-there-any-performance-benefit-with-chaining-statements-in-net 3 Is there any performance benefit with "chaining" statements in .NET? Dillie-O 2008-09-19T20:47:55Z 2009-12-09T21:35:20Z <p>When retrieving a lookup code value from a table, some folks do this...</p> <pre><code>Dim dtLookupCode As New LookupCodeDataTable() Dim taLookupCode AS New LookupCodeTableAdapter() Dim strDescription As String dtLookupCode = taLookupCode.GetDataByCodeAndValue("EmpStatus", "FULL") strDescription = dtLookupCode.Item(0).Meaning </code></pre> <p>...however, I've also seen things done "chained" like this...</p> <pre><code>strDescription = taLookupCode.GetDataByCodeAndValue("EmpStatus", "FULL").Item(0).Meaning </code></pre> <p>...which bypasses having a lookup code data table in the first place since the table adapter knows what the structure of its result set looks like.</p> <p>Does using the "chained" method save the overhead of creating the data table object, or does it effectively get created anyway in order to properly handle the .Item(0).Meaning statement?</p> http://stackoverflow.com/questions/1874971/do-you-feel-that-writing-on-paper-helps-you-develop-better 6 Do you feel that writing on paper helps you develop better? Nikwin 2009-12-09T16:14:01Z 2009-12-09T21:28:01Z <p>I personally write out any program that is not a throwaway script on plain paper. Mostly, this is so that I have something to do during the more boring classes, but I actually feel that it has done a lot for the quality of my programs. Generally, when I jump right in and code, a lot of hacks come into the code and it is generally of lower quality. Also, I tend to run into mental walls, and just seem to take more time to finish. Because I write things out, I can see how things are going to turn out, and can form a better structure, and the ability to write notes in the margins is nice. When I tell this to friends however, they just feel that it takes longer as you can actually test written paper, and you cannot move blocks of code around when they are in ink.</p> <p>Does anyone else write out their programs, or am I pretty much alone in this?</p> http://stackoverflow.com/questions/1856872/how-to-improve-coding-skills -3 How to Improve Coding Skills ? [closed] Rachel 2009-12-06T22:33:17Z 2009-12-06T22:42:29Z <p>I think this is very generic question but I would like to know what are the things one should keep in mind as a developer while improving his/her's coding skills ?</p> http://stackoverflow.com/questions/709811/can-anyone-recommend-a-good-resource-for-learning-vhdl 2 Can anyone recommend a good resource for learning VHDL? Bua 2009-04-02T13:53:58Z 2009-12-04T00:08:59Z <p>Can anyone recommend a good book for learning VHDL? Or failing that, any good resource?</p> http://stackoverflow.com/questions/1813905/if-you-dont-code-for-fun-you-cant-be-a-good-programmer 1 If you don't code for fun, you can't be a good programmer? [closed] Juanjo Conti 2009-11-28T22:00:39Z 2009-12-01T10:59:19Z <p>I've read a lot of times that if you don't code in your free time, out of the office, you can't be a good programmer? Do you think this is true? In which percent?</p> <p>Maybe is more true for younger programmers than for older ones? A young kid with a lot of free time can code when is not studying or working but I think it's harder for a grown up programmer with family.</p> <p>What about you, do yo code for fun? Does that make you a better programmer?</p> http://stackoverflow.com/questions/1819896/do-you-code-in-your-telephone 0 Do you code in your Telephone? [closed] Juanjo Conti 2009-11-30T13:42:16Z 2009-11-30T13:42:16Z <p>I'm not talking about coding FOR your telephone. That's a very common task, there are companies that ONLY do that. I'm talking about this: we love to code, smart phones are each day better, we may spend some ours a day in a train or a plain. Do you code in your Telephone? Meaning: writing programs for your phone, for other platforms or just solving quiz for fun.</p> <p>Do you? Which telephone do you own? Which tools do you use?</p> <p>Don't you? Would you like to? I'd really like :)</p> http://stackoverflow.com/questions/1811354/practical-and-useful-coding-tricks-that-help-web-developers-save-time 0 Practical and useful coding tricks that help web developers save time? John 2009-11-28T02:32:40Z 2009-11-28T13:50:06Z <p>I'm a php web programmer. I want to know if there are common web problems that web programmers face for which there are unorthodox and effective solutions.</p> <p>As an example, I'm making a simple website of user generated profiles. A user can store a whole bunch of information that range from first high school to when he first went to a baseball game. Instead of making 50 columns in the database for form data I never intend to search/query against, I simply serialize the form data - serialize($_POST) - and save it in the t_user.general_info text column. This simplifies my database because I don't need atomicity on such mundane data. At any time in the future, I can unserialize() the data to see it all again. I think if I were back in school, teachers would dis-approve of this. But hey, it's fast and practical!</p> <p>I'm wondering if there are other simple tricks of the same nature in web development that will help me save time.</p> <p>Perhaps someone can post a link for me to study?</p> http://stackoverflow.com/questions/1791602/to-start-coding-in-c-net-for-etoken 0 to start coding in C#.NET for eToken vgv8 2009-11-24T17:21:43Z 2009-11-24T20:40:56Z <p>Newbie request for advise.</p> <p>I have a task to develoop C# (VB.NET) service class (library) for storing/extractin user's passwords in/from Aladdin eToken devices.</p> <p>Advise me any:</p> <ul> <li>walkthroughs, tutorials </li> <li>forums, discussions </li> <li>code sample(s), examples</li> </ul> <p>I googled but couldn't find anything helpful for starting coding.</p> <p>"eToken PKI Developer’s Guide (Windows) Version 5.0 Revision B" has only 2 phrases on .NET:</p> <p>1)</p> <blockquote> <p>"Developing in Non-C/C++ Environments Both CAPI and PKCS#11 are C-style APIs. It is easy to use them from C/C++ programs. However, there are many other programming technologies available for MS Windows developers, such as:</p> <p>.NET"</p> </blockquote> <p>and</p> <p>2)</p> <blockquote> <p>"<strong>Writing Wrapper Objects</strong></p> <p>The alternate solution (for either programming environment) is to write a wrapper object that answers the particular needs of the application. Depending on these needs, the wrapper object may be a .NET assembly object, an ActiveX object or something else."</p> </blockquote> http://stackoverflow.com/questions/1776758/software-development-on-mac 2 Software development on Mac ajay 2009-11-21T20:56:05Z 2009-11-22T12:11:57Z <p>I was just wondering if from a linux software development perspective &amp; software development perspective in general, if a Macbook is worth it. I know that the Look and feel is very good and all that. But I wanted to know more about how easy it is to coding on it (tools, IDE etc.). Mostly of the people whom I know that own a mac are not Software developers. They just bought it because they wanted the cool factor. So, I am not really able to judge it's need.</p> <p>Thanks, Ajay G.</p> http://stackoverflow.com/questions/1770616/tips-for-developing-in-several-languages-at-once 3 Tips for developing in several languages at once ennuikiller 2009-11-20T14:04:58Z 2009-11-21T01:18:13Z <p>Does anybody have any tips for utilizing multiple languages at the same time? I use objective-c, c, perl, ruby, bash, ksh, rails, and other proprietary languages every day and am finding increasingly difficult to go back and forth between them on a daily basis. As a trivial example when switching between perl and ruby I constantly forget to use semi-colons in perl and find myself using $ for local vars in ruby. Things are even worse going from objective-c to c: I use function calls (instead meesage invocations) in objective-c. Does anybody have any tips on making working in several languages more productive?</p> <p>For those of you suggesting IDEs as a solution, although I agree in principle with using an IDE to increase productivity. I tend to do all my coding in vi</p> http://stackoverflow.com/questions/1772959/what-do-you-know-about-your-code -1 What do you know about your code? [closed] aartist 2009-11-20T20:10:58Z 2009-11-20T20:10:58Z <p>This is very open ended question. I like to know what a programmer knows about his/her code for a given project. A programmer has wealth of knowledge about the code they have written. I think that it may be about modules/classes used, variables, algorithm, coding style, configurations, applications ? What I am missing ? Where I can find systematic data about this?</p> http://stackoverflow.com/questions/136056/ide-or-text-editor 14 IDE or Text Editor? Pablo Fernandez 2008-09-25T20:58:43Z 2009-11-13T21:04:56Z <p>Do you like to code using an IDE (like Eclipse or Visual Studio), or you prefer simply a text editor (like Vim) ? </p> <p>I heard strong arguments against IDE's (specially from dynamic language programmers) but I really love Eclipse.</p> <p>Which type do you prefer? Why? If it depends on the language please say so.</p> <p>Thanks</p> http://stackoverflow.com/questions/283749/the-vb-net-with-statement-embrace-or-avoid 4 The VB.NET 'With' Statement - embrace or avoid? Tom 2008-11-12T12:09:32Z 2009-11-12T15:31:10Z <p>At work, I'm frequently working on projects where numerous properties of certain objects have to be set during their construction or early during their lifetime. For the sake of convenience and readability, I often use the <code>With</code> statement to set these properties. I find that</p> <pre><code>With Me.Elements .PropertyA = True .PropertyB = "Inactive" ' And so on for several more lines End With </code></pre> <p>Looks much better than</p> <pre><code>Me.Elements.PropertyA = True Me.Elements.PropertyB = "Inactive" ' And so on for several more lines </code></pre> <p>for very long statements that simply set properties.</p> <p>I've noticed that there are some issues with using <code>With</code> while debugging; however, <strong>I was wondering if there were any compelling reasons to avoid using <code>With</code> in practice</strong>? I've always assumed the code generated via the compiler for the above two cases is basically the same which is why I've always chosen to write what I feel to be more readable. </p> http://stackoverflow.com/questions/968522/too-careless-in-programming 32 Too "careless" in programming? Charles Khunt 2009-06-09T06:47:29Z 2009-11-11T03:34:16Z <p>I just feel so frustrated right now as I just finished one task. </p> <p>Seems like every time I program (homework or other stuff), I make stupid mistakes that take me hours and hours to fix, sometimes it takes me the whole night just to finish a fairly small homework. Even if I do debug, still need lots of time to finish.</p> <p>I love writing code and I'm constantly learning but there are a lot of those nights that I feel that maybe I'm just too "dumb" or careless to be good at it especially when I'm at the workplace in the future. </p> <p>Any advice on this? Is this normal? </p> http://stackoverflow.com/questions/5989/whats-the-best-way-to-kick-ass-in-programming 7 What's the best way to kick ass in programming? eviljack 2008-08-08T14:24:17Z 2009-11-07T04:13:06Z <p>I've been programming since college, was a hobbyist programmer as a kid, but never got serious until I was a freshman. That was almost a decade and a half ago. One thing I've noticed is that when people reach a certain point in their skills they never really move beyond that. That is if they suck as a developer when you hire them, they will always suck. 10 years of C# experience doesn't necessarily make you a better developer than someone with 6 months of experience. (yeah, yeah, some people will get angry at reading this, but it's true, live with it).</p> <p>So my question is, just how the hell do you get to be one of those super programming freaks that everyone worships? I've been doing coding puzzles as often as I can -- example: reverse a string in place using no swap buffers. (that is a fun one) and I've noticed myself get a little sharper. I'm not improving as fast as I wish I could so I would love to hear some tips from people here.</p> http://stackoverflow.com/questions/447364/how-much-code-do-you-tend-to-write-before-you-test 1 How much code do you tend to write before you test? EvilTeach 2009-01-15T16:07:18Z 2009-11-04T11:19:16Z <p>I have noted over the years, that I tend to write maybe a screen full of code, then test to make sure it does what it should.</p> <p>Some of the benefits of this technique are</p> <blockquote> <p>Syntax errors are a result of the new code, so you don't have to look far to find the cause.</p> <p>It is cheap to set up a temporary condition, that lets you test the else clause of an if statement, so you can be sure to get error messages, and the like correct when they are cheap to test.</p> </blockquote> <p><strong>How do you tend to code?<br /> What benefits do you get by doing it that way?</strong></p> <p>EDIT: Like most of my questions, I really haven't set the context well enough. I am not really talking about unit test level granularity. I am referring to making sure the local bit of code does exactly what I intend it to, at the time of implementation.</p> http://stackoverflow.com/questions/1664192/not-good-starter-and-even-not-good-finisher 2 Not good starter AND even not good finisher unknown (yahoo) 2009-11-02T22:40:39Z 2009-11-03T00:20:22Z <p>If any body can advice me and help me a little.</p> <p>It is always difficult for me to start work on new task, but after starting work it is also difficult to finish it in estimated time. </p> <p>In start I can't grab the whole idea(idea mean how to start development on assigned task e.g. window or webpage etc.) of a task or group of tasks.</p> <p>If I manage to start (coding) my task, it become very difficult for me to finish it in estimated time, that does not mean I can't finish it but not in time.</p> <p>BUT if I work In-between some task, it is perfectly all right. I have no difficulty to solve problems in some other developers code etc.</p> <p>I never go through design patterns. Never, books like code complete etc.</p> <p>Any suggestion.</p> http://stackoverflow.com/questions/1662681/how-to-code-via-mental-models-in-the-absence-of-a-keyboard 9 How to code via mental-models, in the absence of a keyboard. Tchalvak 2009-11-02T17:47:16Z 2009-11-02T20:19:13Z <p>I suffer periodically from carpel tunnel (The "carps" as I shall affectionately call it). In an effort to extend my ability to do programming at least into my thirties (after which I'll have made my first million, obviously, so it won't be an issue any more), I have cut back on my out-of-work coding time, among other preventative solutions.</p> <p>I believe in coding as a mental exercise, and as such I don't think that my physical limitations should hold me back (whether it's that my hand is hurting, or that I just don't happen to be near a computer or keyboard, maybe I'm just outside in the park). My goal is to be able to write code in my head, nowhere near a computer, and then turn what I did into real code later.</p> <p>So I'm wondering if people have techniques that they use for this. In the past, I have kept a notebook in which I've brainstormed ideas about coding, though I haven't used that to write code directly. So I imagine that having the concepts on paper/in text is the end of the little process, and the question of how to represent the code on paper/in text/via schematics is less important/more easily solved than the problem of <strong>how to effectively visualize purely mental models of code.</strong> Suggestions?</p> <p><hr /></p> <p>Edit: As I said above, note that the core problem that I'm trying to solve is not my carpel tunnel (not here that is, there are other steps that I'm taking for that), but rather I'm trying to find ways to improve my keyboardless workflow as one of a number of workarounds for "the carps". :p</p> <p><hr /></p> <p>Edit 2: Just to be a little more clear, here are some examples cribbed from below that kinda get at the solutions I'm trying to brainstorm:</p> <ul> <li><p>flow charts: e.g. I could attach visual images (chat functionality =<br /> talking heads) to concepts that I wanted to deal with and try to figure out how<br /> to make them fit together as code</p></li> <li><p>UML: maybe if I get familiar enough<br /> with UML, I could start to think in<br /> UML. </p></li> <li><p>Specs: Maybe I should ignore the question of code altogether and just think up detailed specs for the code and then leave pinning down the implementation for later.</p></li> <li><p>Etc.</p></li> </ul> <p>Anyway, food for thought, I guess.</p> http://stackoverflow.com/questions/1584481/php-line-indentation 0 PHP Line Indentation Kaitsuli 2009-10-18T09:45:30Z 2009-11-02T14:21:36Z <p>Hi,</p> <p>I'm curious to know, how many spaces of indentation do you prefer in PHP code?</p> <pre><code>function one() { $one; function space() { $space; } } function two() { $two; function spaces() { $spaces; } } function three() { $three; function spaces() { $spaces; } } function four() { $four; function spaces() { $spaces; } } </code></pre> <p>Let's not make multiple answers for same identation, but use the +1 for answers that fit your preferences.</p> http://stackoverflow.com/questions/1562438/could-use-some-help-with-this-soundex-coding 2 Could use some help with this soundex coding. Josh 2009-10-13T19:31:28Z 2009-10-13T20:06:56Z <p>The US census bureau uses a special encoding called “soundex” to locate information about a person. The soundex is an encoding of surnames (last names) based on the way a surname sounds rather than the way it is spelled. Surnames that sound the same, but are spelled differently, like SMITH and SMYTH, have the same code and are filed together. The soundex coding system was developed so that you can find a surname even though it may have been recorded under various spellings.</p> <p>In this lab you will design, code, and document a program that produces the soundex code when input with a surname. A user will be prompted for a surname, and the program should output the corresponding code.</p> <p>Basic Soundex Coding Rules</p> <p>Every soundex encoding of a surname consists of a letter and three numbers. The letter used is always the first letter of the surname. The numbers are assigned to the remaining letters of the surname according to the soundex guide shown below. Zeroes are added at the end if necessary to always produce a four-character code. Additional letters are disregarded. </p> <p>Soundex Coding Guide</p> <p>Soundex assigns a number for various consonants. Consonants that sound alike are assigned the same number:</p> <p>Number Consonants</p> <p>1 B, F, P, V 2 C, G, J, K, Q, S, X, Z 3 D, T 4 L 5 M, N 6 R</p> <p>Soundex disregards the letters A, E, I, O, U, H, W, and Y.</p> <p>There are 3 additional Soundex Coding Rules that are followed. A good program design would implement these each as one or more separate functions.</p> <p>Rule 1. Names With Double Letters</p> <p>If the surname has any double letters, they should be treated as one letter. For example:</p> <ul> <li>Gutierrez is coded G362 (G, 3 for the T, 6 for the first R, second R ignored, 2 for the Z).</li> </ul> <p>Rule 2. Names with Letters Side-by-Side that have the Same Soundex Code Number</p> <p>If the surname has different letters side-by-side that have the same number in the soundex coding guide, they should be treated as one letter. Examples:</p> <ul> <li><p>Pfister is coded as P236 (P, F ignored since it is considered same as P, 2 for the S, 3 for the T, 6 for the R).</p></li> <li><p>Jackson is coded as J250 (J, 2 for the C, K ignored same as C, S ignored same as C, 5 for the N, 0 added).</p></li> </ul> <p>Rule 3. Consonant Separators</p> <p>3.a. If a vowel (A, E, I, O, U) separates two consonants that have the same soundex code, the consonant to the right of the vowel is coded. Example:</p> <ul> <li>Tymczak is coded as T-522 (T, 5 for the M, 2 for the C, Z ignored (see "Side-by-Side" rule above), 2 for the K). Since the vowel "A" separates the Z and K, the K is coded.</li> </ul> <p>3.b. If "H" or "W" separate two consonants that have the same soundex code, the consonant to the right is not coded. Example:</p> <p>*Ashcraft is coded A261 (A, 2 for the S, C ignored since same as S with H in between, 6 for the R, 1 for the F). It is not coded A226.</p> <p>So far this is my code:</p> <pre><code>surname = raw_input("Please enter surname:") outstring = "" outstring = outstring + surname[0] for i in range (1, len(surname)): nextletter = surname[i] if nextletter in ['B','F','P','V']: outstring = outstring + '1' elif nextletter in ['C','G','J','K','Q','S','X','Z']: outstring = outstring + '2' elif nextletter in ['D','T']: outstring = outstring + '3' elif nextletter in ['L']: outstring = outstring + '4' elif nextletter in ['M','N']: outstring = outstring + '5' elif nextletter in ['R']: outstring = outstring + '6' print outstring </code></pre> <p>The code sufficiently does what it is asked to, I am just not sure how to code the three rules. That is where I need help. So, any help is appreciated.</p> http://stackoverflow.com/questions/1550477/what-are-the-most-useful-code-snippets-in-eclipse-or-idea 1 What are the most useful code snippets in eclipse or Idea? [closed] fastcodejava 2009-10-11T11:25:29Z 2009-10-11T11:25:29Z <p>Please put your most favorite code snippet. Thanks.</p> http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interview 5 Too much coding at a job interview Shawn 2009-09-30T13:16:58Z 2009-10-04T20:24:57Z <p>I am In a situation where for an interview I have been asked to code For half a day and create a web based gallery with tagging, search, uploading, rating and so on. I'm starting to worry that I can't possibly fulfill the requirements in the alloted time. Does this mean I'm not good enough or is it a test designed not to be beaten?</p> <p>Edit: after talking with the developers there I believe they are quite genuine and after seeing some of their work I do believe they are know what they are doing. I also don't believe they just want some free 4 hour gallery as I have seen some of the galleries they have made and they are impressive </p> http://stackoverflow.com/questions/692005/cobol-confusion 1 COBOL Confusion Enyalius 2009-03-28T01:55:01Z 2009-10-03T12:48:49Z <p>Hey, everyone. I'm having a bit of trouble in a coding project that I'm trying to tackle in the zOS environment using COBOL. I need to read a file in and put them into an indexed table (I know there will be less than 90 records).</p> <p>The thing that is throwing me is that we are bound by the parameters of the project to use a variable called "Table-Size" (set to zero at declaration).</p> <p>Given all that, I need to do something like "Occurs 1 to 90 times Depending on Table-Size", but I don't understand how that will work if table-size has to (as far as I can tell) because table-size is incremented along with each entry that is added to the table. Can anyone please clear this up for me?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1497242/programming-vs-coding-are-they-similar-different 0 Programming Vs Coding : Are they similar/different? [closed] cedar715 2009-09-30T10:24:16Z 2009-09-30T10:38:58Z <p>In computing field, Programming Vs Coding : Are they same/different? How do you guys view them?</p> http://stackoverflow.com/questions/1497129/c-coding-standards-tool 1 C# Coding Standards Tool cedric 2009-09-30T09:52:50Z 2009-09-30T10:33:24Z <p>Hi. Is there a Visual Studio plug-n or add-in which allows you to check code formats and conventions. This would include checking the indention, spacing,line spacing, casing of function names or variables, check if pascal case or camel case, etc. Anything which relates to coding convention. And of course we are allowed to set these. And if possible we can save this settings to be imported for other projects.</p> <p>It would also be nice if it puts a warning or something on the visual studio editor(e.g. highlighting the line statement) or on the VS console if there are any violations on the convention.</p> <p>I found Code Style Enforcer and this could have been fine but this needs DXCore from devexpress which is for sale or for a 30-day trial. I need a free add-in. Tnx... :D</p> http://stackoverflow.com/questions/987182/improving-the-way-we-write-code 16 Improving the way we write code? Nils Pipenbrinck 2009-06-12T15:10:39Z 2009-09-24T16:35:00Z <p>While thinking about software-engineering in general I came across the question why we don't see any improvements in the way we write/document code.</p> <p>Think about it: There has not been a revolutionary improvement since we've moved from punch cards to text editing. The last improvement I've seen is syntax highlighting and context sensitive help (e.g. Intellisense or ctags). Not something I would call revolutionary.</p> <p>That makes me wonder: Why is it so? </p> <p>I'll start with something I miss badly: </p> <ul> <li>Lots of my code deals with geometry. For documentation describing geometric relationships always ends up in a big heap of hard to read mathematical stuff (due to the lack of proper equation type-setting in ASCII). However, if I could embed a little drawing or scribble into the code everything would be much easier, neater and better to be understood.</li> </ul> <p>What can you think up that would make your coding/text editing/documention tasks easier?</p> http://stackoverflow.com/questions/1455981/is-it-bad-practice-to-nest-2-try-catch-statements-in-c 6 Is it bad practice to nest 2 try catch statements in C#? JL 2009-09-21T18:15:57Z 2009-09-21T19:37:46Z <p>Is the following code bad practice?</p> <pre><code> try //Try Overall Operation { try //Try section 1 of operation { } catch(exception ex) { //handle exception code //throw the exception } catch (exception ex) { // send soap exception back to SOAP client. } </code></pre> <p>I know from a program review point of view, other developers seeing 2 tries nested directly like that might wonder why, but is it totally taboo, or is it accepted practice now days?</p> <p>Thanks Guys, I agree with you all about the refactoring, going to create a seperate method for the sub functionality, the method was getting really long. I am very impressed to all of you who picked this up...</p>