User Curro - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:53:09Z http://stackoverflow.com/feeds/user/10688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1625066/classes-not-resolving-in-c-cli-assembly 0 Classes not resolving in C++/CLI Assembly. Curro 2009-10-26T14:16:07Z 2009-10-26T14:16:07Z <p>I'm running into a very weird behavior in a C++/CLI DLL that wraps some native code, so it can be accessed through .NET. This DLL wraps code from different native DLLs and defines namespaces to separate the wrappers for the different native modules. For example:</p> <ul> <li>namespace Foo -> wraps code in Foo.dll (which is a native C++ DLL).</li> <li>namespace Bar -> wraps code in Bar.dll (which is another native C++ DLL).</li> </ul> <p>The problem that I'm running into is that the types in namespace Bar (for example) are not being resolved correctly. They are coming as types of a base class defined in Foo. </p> <p>At the beginning, I thought it might be because some dependency might have been preventing Bar.dll to load, but that is not the case. Bar.dll is loading correctly. Furthermore, it is just this Bar namespace that has the problem. Classes in, let's say, namespace Zap, which of course wraps Zap.dll, are resolved correctly.</p> <p>I'm wondering if someone has run into a similar problem or has an idea of what can be the cause.</p> <p>Any help will be highly appreciated.</p> http://stackoverflow.com/questions/337449/how-does-one-declare-an-array-of-constant-function-pointers-in-c/337553#337553 0 Answer by Curro for How does one declare an array of constant function pointers in C? Curro 2008-12-03T15:38:25Z 2008-12-03T15:38:25Z <p>I am not sure if this will work in 'C'. it does work in 'C++':</p> <ul> <li><p>First define MESSAGE_HANDLERS as a type:</p> <p>typedef void (*MESSAGE_HANDLER)();</p></li> <li><p>Then, use the type definition to declare your array a constant:</p> <p>MESSAGE_HANDLER const handlers[] = {function1, function2};</p></li> </ul> <p>The trick is in the 'typedef', if you can do the same semantically in 'C', it should work too.</p> http://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net 9 Removing code from Release build in .NET Curro 2008-12-03T15:05:51Z 2008-12-03T15:22:31Z <p>I've been doing some performance testing around the use of System.Diagnostics.Debug, and it seems that all code related to the static class Debug gets completely removed when the Release configuration is built. I was wondering how the compiler knows that. Maybe there is some class or configuration attribute that allows to specify exactly that behavior.</p> <p>I am trying to create some debugging code that I want completely removed from the Release configuration, and I was wondering if I could do it just like the Debug class where simply changing the configuration parameters removes the code.</p> http://stackoverflow.com/questions/162142/perforce-trigger-to-deny-submission-of-unchanged-files/162285#162285 1 Answer by Curro for Perforce trigger to deny submission of unchanged files? Curro 2008-10-02T13:33:49Z 2008-11-07T03:58:54Z <p>If you look at the Triggers table in Perforce, you will see that triggers are nothing but scripts that get invoked when some kind of event happens. In your case, the change-content event is triggered.</p> <p>You have several options to write scripts that interact with Perforce. The <a href="http://www.perforce.com/perforce/loadsupp.html" rel="nofollow">Perforce downloads page</a> has libraries and modules for many widely use languages. Any of this will help you and greatly simplify what you need to do. Also, check the <a href="http://www.perforce.com/perforce/technical.html" rel="nofollow">Perforce Documentation page</a> and download the administrator's guide. It will explain how to create the trigger, etc.</p> <p>Basically, you need to write a script that will get the information from the change list that is being submitted and for each file in it run a "diff" command against the server. If you find a file that has not change, you need to invalidate the submission.</p> <p>The Perforce module on you favorite language and the administrators guide will give you all the answers you need.</p> http://stackoverflow.com/questions/269026/is-there-a-way-to-use-inline-comments-to-document-members-in-net 2 Is there a way to use inline comments to document members in .NET? Curro 2008-11-06T15:10:40Z 2008-11-06T15:16:50Z <p>Is there a way to document a member inline in .Net? Let me explain. Most tools that extract documentation from comments support some kind of inline documentation where you can add a brief after the member declaration. Something like:</p> <pre><code>public static string MyField; /// &lt;summary&gt;Information about MyField.&lt;/summary&gt; </code></pre> <p>Is there a way to do this in C# or the .NET languages?</p> http://stackoverflow.com/questions/58640/great-programming-quotes/253309#253309 -1 Answer by Curro for Great programming quotes Curro 2008-10-31T12:22:22Z 2008-10-31T12:22:22Z <p>There are 10 types of people: those who understand binary, and those who don't.</p> http://stackoverflow.com/questions/239408/can-i-force-subclasses-to-override-a-method-without-making-it-abstract/240421#240421 1 Answer by Curro for Can I force subclasses to override a method without making it abstract? Curro 2008-10-27T16:01:34Z 2008-10-27T16:01:34Z <p>You could use the reference to implementation idiom in your class.</p> <pre><code>public class DesignerHappy { private ADesignerHappyImp imp_; public int MyMethod() { return imp_.MyMethod() } public int MyProperty { get { return imp_.MyProperty; } set { imp_.MyProperty = value; } } } public abstract class ADesignerHappyImp { public abstract int MyMethod(); public int MyProperty {get; set;} } </code></pre> <p>DesignerHappy just exposes the interface you want but forwards all the calls to the implementation object. You extend the behavior by sub-classing ADesignerHappyImp, which forces you to implement all the abstract members.</p> <p>You can provide a default implementation of ADesignerHappyImp, which is used to initialize DesignerHappy by default and expose a property that allows you to change the implementation.</p> http://stackoverflow.com/questions/225370/on-xp-best-way-to-synchronize-files-and-folders/225425#225425 1 Answer by Curro for On XP, best way to synchronize files and folders. Curro 2008-10-22T11:46:40Z 2008-10-22T11:46:40Z <p>If I understand you correctly, you are using SyncToy to synchronize folder in different machines. This is not a good idea because SyncToy has not been implemented to do this; it is more of a back-up solution.</p> <p>To synchronize folder between machines, you have two very good solutions that work great and do automatic synchronization.</p> <p>The first one is <a href="https://www.mesh.com/Welcome/Welcome.aspx" rel="nofollow">Windows Live Mesh</a>. Despite being a technology preview, it works great and it also allows you to remote into a machine added to your Mesh.</p> <p>The other option is <a href="https://www.foldershare.com/welcome.aspx" rel="nofollow">Windows Live FolderShare</a>. It is in Beta and also works great. I will recommend this option for a simple reason: Windows Live Mesh is going to become a sharing platform for Microsoft, and FolderShare will be implemented on top of it, so FolderShare will be the application to use where Mesh will be the underlying platform. If you go with Mesh, at some point you will have to move to FolderShare, where if you use FolderShare you will be all set.</p> http://stackoverflow.com/questions/218461/difference-initializing-static-variable-inline-or-in-static-constructor-in-c 6 Difference initializing static variable inline or in static constructor in C# Curro 2008-10-20T13:39:18Z 2008-10-20T14:54:31Z <p>I would like to know what is the difference between initializing a static member inline as in:</p> <pre><code>class Foo { private static Bar bar_ = new Bar(); } </code></pre> <p>or initializing it inside the static constructor as in:</p> <pre><code>class Foo { static Foo() { bar_ = new Bar(); } private static Bar bar_; } </code></pre> http://stackoverflow.com/questions/166641/is-using-size-for-the-2nd-expression-in-a-for-construct-always-bad/166774#166774 1 Answer by Curro for Is using size() for the 2nd expression in a for construct always bad? Curro 2008-10-03T13:14:21Z 2008-10-03T13:14:21Z <p>The compiler will not know if the value of .size() changes between calls, so it won't do any optimizations. I know you just asked about the use of .size(), but you should be using iterators anyway.</p> <pre><code>std::vector&lt;double&gt;::const_iterator iter = values.begin(); for(; iter != values.end(); ++iter) { // use the iterator here to access the value. } </code></pre> <p>In this case, the call to .end() is similar to the problem you expose with .size(). If you know the loop does not perform any operation in the vector that invalidates the iterators, you can initialize an iterator to the .end() position prior to enter the loop and use that as your boundary.</p> http://stackoverflow.com/questions/162367/what-hurts-the-quality-of-your-code-most/162417#162417 -4 Answer by Curro for What hurts the quality of your code most? Curro 2008-10-02T13:59:37Z 2008-10-02T13:59:37Z <p>Refactoring and Unit Test do not affect the quality of software. Refactoring makes it easier to maintain, and unit tests validate the software works as expected, but they don't affect the quality; they are tools that allow you to measure quality.</p> <p>Anyway, lack of communication, whether is among team members, with customers, or with designers through specifications, is one of the major causes of bad quality software.</p> http://stackoverflow.com/questions/161925/corner-desks-vs-straight-desks/162358#162358 0 Answer by Curro for Corner desks vs straight desks Curro 2008-10-02T13:49:14Z 2008-10-02T13:49:14Z <p>I used to have a corner desk, but recently, I moved to a straight desk (it was my decision). Wrong decision. I have 2 24in. wide-screen monitors hooked to my desktop, plus my laptop, which is a 19in wide-screen. I use a single mouse and keyboard through <a href="http://synergy2.sourceforge.net/" rel="nofollow">Synergy</a>. There is no good way to place the monitors and the laptop in a way that you can face all the screens straight. Facing a corner and a <strong>keyboar tray</strong>, you can place your-self around so you can look at each of the screens straight, or with minimal turning of your head.</p> <p>I'm really considering swithching.</p> http://stackoverflow.com/questions/134001/how-can-i-load-the-contents-of-a-text-file-into-a-batch-file-variable/134341#134341 0 Answer by Curro for How can I load the contents of a text file into a batch file variable? Curro 2008-09-25T16:23:42Z 2008-09-25T16:23:42Z <p>You can use:</p> <pre><code>set content= for /f "delims=" %%i in ('type text.txt') do set content=!content! %%i </code></pre> http://stackoverflow.com/questions/106414/how-to-refer-to-the-path-to-an-assembly-in-the-gac-within-registry-entries-added/107171#107171 2 Answer by Curro for How to refer to the path to an assembly in the GAC within registry entries added by a Windows Installer package? Curro 2008-09-20T05:02:01Z 2008-09-20T05:02:01Z <p>If you have a component per file, which you should anyway, the KeyPath of the component points to the location where the file gets installed (in this case the GAC). You can use the component key as a token in the value field of the entry in the Registry table in your MSI.</p> <p>Assuming you have an assembly with a File key in the File table of "assmb.dll" and its corresponding component, also "assmb.dll". You can set the value field in the Registry table to register your assembly to [$assmb.dll], and it will get resolved to the install location of the assembly. If this directory is the GAC, it will be resolved to the location of the GAC.</p> <p>You can find more information about Formatted fields in an MSI <a href="http://msdn.microsoft.com/en-us/library/aa368609(VS.85).aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/93097/is-object-oriented-modeling-different-from-object-oriented-programming/93149#93149 3 Answer by Curro for Is Object-Oriented Modeling different from Object-Oriented Programming? Curro 2008-09-18T14:39:56Z 2008-09-18T14:39:56Z <p>Object-Oriented Modeling refers to the process where you are designing how the code will look like. You will use a modeling language like UML to do Object-Oriented Modeling. Object-Oriented Programming refers to a programming paradigm where you use objects. These objects have been designed during the desing phase using Object-Oriented Modeling techniques, and they are implemented during the construction (programming phase) using a language that supports Object-Oriented programming and based on the model.</p> http://stackoverflow.com/questions/92884/what-did-you-do-to-develop-good-code-designing-practices/93043#93043 1 Answer by Curro for What did you do to develop good code designing practices Curro 2008-09-18T14:29:22Z 2008-09-18T14:29:22Z <p>Spaghetti code is easily avoid by Refactoring. Refactoring is easily done when you have unit tests.Test-Driven Development forces you to write the unit tests before you write the code. TDD will show you if your code is easy to use and if the design is intuitive.</p> <p>So to answer your question, I will say you need to add TDD and Refactoring to your toolbox.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92623#92623 0 Answer by Curro for Learning C# in Mono Curro 2008-09-18T13:41:29Z 2008-09-18T13:41:29Z <p>To learn the language, you will be just fine. There are some libraries missing in mono, but that would not prevent you from learning the language. You can find more information at the <a href="http://www.mono-project.com/FAQ:_General" rel="nofollow">Mono Project Page: FAQ</a>.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72856#72856 10 Answer by Curro for What development book made the most impact on you as a developer? Curro 2008-09-16T14:24:27Z 2008-09-16T14:24:27Z <p>Many of the books already mentioned opened my eyes and influenced me, but a book every programmer should read is <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Test-Driven Development by Example</a>. It really showed me the importance of unit tests and TDD and got me started very quick.</p> http://stackoverflow.com/questions/72671/how-to-create-batch-file-in-windows-using-start-with-a-path-and-command-with-sp/72726#72726 -1 Answer by Curro for How to create batch file in Windows using "start" with a path and command with spaces. Curro 2008-09-16T14:13:33Z 2008-09-16T14:13:33Z <p>Surrounding the path and the argument with spaces inside quotes as in your example should do. The command may need to handle the quotes when the parameters are passed to it, but it usually is not a big deal.</p> http://stackoverflow.com/questions/71885/net-framework-versions/71941#71941 0 Answer by Curro for .NET Framework versions Curro 2008-09-16T13:01:03Z 2008-09-16T13:01:03Z <p>Especially with .NET 2.0 many things have changed in the .NET framework (not only at the language level). You will need version 1.1 to run programs linked against that version.</p> <p>Now, if parts of your program use .NET 3.5, and you have access to all the source, I would recommend you port the entire application to .NET 3.5 and be done with it. It make take you a little longer, but it will be worth it moving forward.</p> http://stackoverflow.com/questions/71850/enterprise-design-patterns-for-net/71887#71887 2 Answer by Curro for Enterprise Design Patterns for .NET Curro 2008-09-16T12:54:57Z 2008-09-16T12:54:57Z <p>The reviews in the Amazon page claim that the book has extensive examples in Java and C#. They also claims lots of UML, which makes me think that the book will be useful even if most samples are Java.</p> <p>I haven't read this particular book, but I read other from the same author, and usually, his writting is language independent. I won't hesitate buying this book if the contents are appropriate for your needs.</p> http://stackoverflow.com/questions/71608/how-do-you-set-up-your-net-development-tree/71738#71738 0 Answer by Curro for How do you set up your .NET development tree? Curro 2008-09-16T12:32:42Z 2008-09-16T12:32:42Z <p>If I understand your structure correctly, I think you are going to have many duplicates in your dev tree related to "tools" and "lib". Most likely these are external tools and libraries that might be shared by different projects.</p> <p>Something that works well for us is:<br /> <code> solutionfile.sln<br /> -src<br /> --projectname<br /> ---config<br /> ---doc<br /> ---source files (structure representing namespaces)<br /> -test<br /> --testprojectname (usually, a test project per source project)<br /> ---unit test files (structure mirroing the structure in the source project)<br /> -lib<br /> --libraryname (containing the libraries)<br /> -tools<br /> </code></p> http://stackoverflow.com/questions/70159/what-is-the-best-source-to-learn-c/71557#71557 1 Answer by Curro for What is the best source to learn C++? Curro 2008-09-16T12:02:09Z 2008-09-16T12:02:09Z <p>There are plenty good books to learn C++, but if you come from a C background, you need to get your mind out of there for a while and learn the C++ language idioms related to Object Oriented Programming and Generic Programming.</p> <p>A good starter is <a href="http://rads.stackoverflow.com/amzn/click/020170353X" rel="nofollow">Accelerated C++</a> or its big brother <a href="http://rads.stackoverflow.com/amzn/click/0201721481" rel="nofollow">C++ Primer</a>. Either one will show you the basics; althought, the second one will go deeper in the subject.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201379260" rel="nofollow">The C++ Standard Template Library</a> book by Josuttis will help you to understand the standard libraries, and will give you a very good idea on how things are designed and should be designed in C++.</p> <p>Once you read those, I will recommend <a href="http://rads.stackoverflow.com/amzn/click/0201704315" rel="nofollow">Modern C++ Design</a> by Alexandrescu; the book that revolutionized the way programming is done in C++ for the past decade.</p> http://stackoverflow.com/questions/65724/uninitialized-memory-blocks-in-vc/69116#69116 3 Answer by Curro for Uninitialized memory blocks in VC++ Curro 2008-09-16T03:16:12Z 2008-09-16T03:16:12Z <p>That is actually a very nice feature in VC++ (and I believe other compilers) because it allows you to see un-allocated memory for a pointer in the debugger. I will think twice before disabling that functionality. When you delete an object in C++ you should set the pointer to NULL in case something later tries to delete the object again. This feature will allow you to spot the places where you forgot to set the pointer to NULL.</p> http://stackoverflow.com/questions/63086/is-there-a-way-around-coding-in-python-without-the-tab-indent-whitespace-crite/69064#69064 0 Answer by Curro for Is there a way around coding in Python without the tab, indent & whitespace criteria? Curro 2008-09-16T03:03:31Z 2008-09-16T03:03:31Z <p>Check the options of your editor or find an editor/IDE that allows you to convert TABs to spaces. I usually set the options of my editor to substitute the TAB character with 4 spaces, and I never run into any problems.</p> http://stackoverflow.com/questions/67794/what-skills-are-worth-learning-for-a-programming-career-and-or-resume/68724#68724 1 Answer by Curro for What skills are worth learning for a programming career and/or resume? Curro 2008-09-16T01:59:18Z 2008-09-16T01:59:18Z <p>If you are asking this question, I'm assuming you don't have a career in programming, so I will start with my own question, do you have a degree? If you don't, get one.</p> <p>If you complete a degree in Computer Science, you won't know everything there is to it, but you will most likely learn the basic skills you need to get started. While you get your degree, do not neglect your programming courses. These days, you will need to learn various languages to be marketable. C++, C#, Java, Python, Ruby, Perl, JavaScript, they are all good. Learn them because each one of them will teach you something new about programming.</p> <p>Keep up with technology, but don't try to seek every buzz word you hear or read on-line. You will have to learn a lot of things that have been around for decades before you can master any new technology, and the reality is that most of them are just that, a buzz that will disappear as fast as they appeared. Seek the things you find interesting. With them, you will find new skills that you will need to learn.</p> <p>Do not be affraid to experiment. Many times, finding a good solution to a problem is a matter of experiment with different possibilities.</p> http://stackoverflow.com/questions/67299/is-unit-testing-worth-the-effort/68567#68567 6 Answer by Curro for Is Unit Testing worth the effort? Curro 2008-09-16T01:32:10Z 2008-09-16T01:32:10Z <p>For years, I've tried to convince people that they needed to write unit test for their code. Whether they wrote the tests first (as in TDD) or after they coded the functionality, I always tried to explain them all the benefits of having unit tests for code. Hardly anyone disagreed with me. You cannot disagree with something that is obvious, and any smart person will see the benefits of unit test and TDD.</p> <p>The problem with unit testing is that it requires a behavioral change, and it is very hard to change people's behavior. With words, you will get a lot of people to agree with you, but you won't see many changes in the way they do things.</p> <p>You have to convince people by doing. Your personal success will atract more people than all the arguments you may have. If they see you are not just talking about unit test or TDD, but you are doing what you preach, and you are successful, people will try to imitate you. </p> <p>You should also take on a lead role because no one writes unit test right the first time, so you may need to coach them on how to do it, show them the way, and the tools available to them. Help them while they write their first tests, review the tests they write on their own, and show them the tricks, idioms and patterns you've learned through your own experiences. After a while, they will start seeing the benefits on their own, and they will change their behavior to incorporate unit tests or TDD into their toolbox.</p> <p>Changes won't happen over night, but with a little of patience, you may achieve your goal.</p> http://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net/337440#337440 Comment by Curro on Removing code from Release build in .NET Curro 2008-12-03T15:40:44Z 2008-12-03T15:40:44Z This is exactly what I was hoping for, since it is customizable and extensible. http://stackoverflow.com/questions/269026/is-there-a-way-to-use-inline-comments-to-document-members-in-net/269038#269038 Comment by Curro on Is there a way to use inline comments to document members in .NET? Curro 2008-11-06T16:27:49Z 2008-11-06T16:27:49Z Most parsers use a character to understand that the documentation is referring to the symbol prior to the comment. Something like: public static string MyField; //- &lt;summary&gt;Information&lt;/summary&gt; When the parser sees //- as opposed to /// it knows it is documentation for the preciding symbol. http://stackoverflow.com/questions/269026/is-there-a-way-to-use-inline-comments-to-document-members-in-net/269038#269038 Comment by Curro on Is there a way to use inline comments to document members in .NET? Curro 2008-11-06T15:13:27Z 2008-11-06T15:13:27Z I know I can put it before. I'm asking if I can put it after in the same line.