User Guvante - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:07:44Z http://stackoverflow.com/feeds/user/16800 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1786529/validate-2-lists-using-fluentvalidation/1786588#1786588 1 Answer by Guvante for Validate 2 lists using FluentValidation Guvante 2009-11-23T22:44:46Z 2009-11-23T22:44:46Z <p>Here is some Pseudo-code of a brute force solution. (I cannot think of any LINQ way of doing indexed comparisions) Sorry for the butchering of Fluent syntax.</p> <pre><code>Must(Names.Length == URLs.Length).WithMessage("Names must be equal in size to URLs"); for (int i = 0; i &lt; Name.Length; i++) { Must(string.IsNullOrEmpty(Names[i]) ^^ string.IsNullOrEmpty(URLs[i])).WithMessage("Either Name and URL must be non-empty, or both must be empty, index = " + i); } </code></pre> <p>Hopefully you get the gist of it, you may also want to look into general LINQ methods, there is likely one that I missed. Basically you are wanting to do a join, and then check for invalid results in the merged list, but again I am unsure how to do a row by row and not simply a many to many join.</p> http://stackoverflow.com/questions/1745291/getting-error-when-trying-to-use-stage-height-to-place-a-graphic/1745305#1745305 1 Answer by Guvante for Getting error when trying to use stage.height to place a graphic Guvante 2009-11-16T22:35:07Z 2009-11-16T22:35:07Z <p>Not that it is the complete answer, but that error is telling you that stage is null.</p> http://stackoverflow.com/questions/1742076/what-can-i-do-about-ambigous-wildcard-patterns-in-struts/1744145#1744145 0 Answer by Guvante for What can I do about ambigous wildcard patterns in Struts? Guvante 2009-11-16T19:01:12Z 2009-11-16T19:01:12Z <p>This is more general advice than specific to structs, but here goes.</p> <p>If you append an additional / to the URL (Which could be done automatically at some point in your testing structure), then the greedy result would be what you are seeing.</p> <p>I would double check to ensure in some way that you are requesting the URL you think you are, or see if there is a way to specify + (aka a non-empty result)</p> <p>EDIT: To answer the overall question, it is hard to tell whether a match is greedy or not, since often times parsers will return the first "valid" result, which may be equivalent to the greedy one depending on where you have it.</p> http://stackoverflow.com/questions/1670700/proper-way-to-delay-an-application-while-a-service-is-starting/1670724#1670724 0 Answer by Guvante for Proper way to delay an application while a service is starting? Guvante 2009-11-03T23:02:19Z 2009-11-03T23:02:19Z <p>A timed loop would be the way to go. Windows is obviously treating them as asynchronous, and the simplest way to handle asynchronous events is to loop and verify.</p> http://stackoverflow.com/questions/1561585/iphone-button-with-non-rectangle-shape/1561876#1561876 7 Answer by Guvante for iPhone button with non-rectangle shape? Guvante 2009-10-13T17:52:21Z 2009-10-13T17:52:21Z <p>It sounds like you are looking to have the clickable area of the button exactly match the PNG you are using.</p> <p>If that is what you are looking for, I would firstly say to not do that. The iPhone is pressed using a finger, which generally doesn't have the accuracy to distinguish such a small region.</p> <p>However if you are stuck on the idea, then the solution is to not use buttons at all, instead handle the click in a parent frame and manually interpret the X/Y value of the click to determine if it is in some bounding region (In the case of a rounded edge button, would likely consist of oring the result of checking 4 circles and 2 rectangles)</p> <p>Edit: Realizing part of your original question, I noticed you mentioned you wanted to handle the function automatically based on the Alpha channel. While I would recommend my method of bounding regions, you could in theory accomplish this by sampling the PNG to test the Alpha channel at a value offset by the origin of the button. Potentially even doing this in a normal button's click event.</p> http://stackoverflow.com/questions/1348295/rhino-mocks-interfaces-and-properties/1348308#1348308 0 Answer by Guvante for Rhino Mocks, Interfaces and properties Guvante 2009-08-28T17:11:25Z 2009-08-28T17:11:25Z <p>I do not have too much experience with Rhino in particular, but did you try casting the callMonitor to a CallMonitor in the call to Return?</p> <p>For example:</p> <pre><code>Expect.Call(new CallMonitor(null)).Return((CallMonitor)callMonitor); </code></pre> <p>EDIT: On second thought, it looks like Return might be a generic method, which means this could be an additional option</p> <pre><code>Expect.Call(new CallMonitor(null)).Return&lt;CallMonitor&gt;(callMonitor); </code></pre> http://stackoverflow.com/questions/1017861/how-can-i-stop-my-visual-studio-from-launching-ie8-twice-when-i-click-start-with/1201766#1201766 0 Answer by Guvante for How can I stop my Visual Studio from launching IE8 TWICE when I click "Start Without Debugging" (Ctrl-F5)? Guvante 2009-07-29T17:13:33Z 2009-07-29T17:13:33Z <p>It sounds as if Visual Studio is utilizing old behavior.</p> <p>Specifically it seems as if Visual Studio is loading up about:blank to get the browser to open, and then loading the page via another call to the executable.</p> <p>Try the following change: Open Internet Properties Click Tabs Settings Near the bottom there should be a section that says "Open links from other programs in:" Within that section select current tab or window</p> http://stackoverflow.com/questions/1195638/restarting-a-windows-service-from-a-linux-box/1195764#1195764 0 Answer by Guvante for Restarting a Windows service from a Linux box Guvante 2009-07-28T18:10:43Z 2009-07-28T18:10:43Z <p>The most concrete way would be to build a web service that handles the updating of the ini's and restarting of the services, but given that this is an internal solution that is likely massive overkill.</p> http://stackoverflow.com/questions/1186642/whats-the-nvelocity-c-equivalent-of-if-x-in-array/1186662#1186662 0 Answer by Guvante for What's the nvelocity/C# equivalent of "if x in array" ? Guvante 2009-07-27T06:16:06Z 2009-07-27T06:16:06Z <p>You can utilize List.Contains</p> <p>Note that if you have an array you can cast the array to IList, or create a new List passing the array in.</p> http://stackoverflow.com/questions/1154593/string-memory-management-during-the-assignment-stored-in-the-map/1154720#1154720 0 Answer by Guvante for String memory management during the assignment stored in the map Guvante 2009-07-20T17:07:08Z 2009-07-20T17:07:08Z <p>Unless you are restricted on the type, I would recommend wrapping your string in another class rather than doing a string&amp; directly, there will be a tiny bit of overhead, but will give you a place to thoroughly comment the reason for the mutability, while also making the code a bit more obvious as to meaning.</p> <p>Heck make it a class called ReassignableString with its only member a public string if you want.</p> http://stackoverflow.com/questions/615818/uninstalling-demo-trial-of-visual-studio-2008-team-system/615854#615854 0 Answer by Guvante for Uninstalling demo/trial of Visual Studio 2008 Team System Guvante 2009-03-05T17:56:16Z 2009-03-05T17:56:16Z <p>I had a similar issue, unfortunately I do not believe I ever found a solution that did not require reinstalling VS 2008 Professional Edition.</p> <p>Basically I used the following tool:</p> <p><a href="http://msdn.microsoft.com/en-us/vstudio/bb968856.aspx" rel="nofollow">AutoUninstallTool</a></p> <p>And then manually removed anything from Add/Remove Programs related to Visual Studio that was left.</p> <p>Note that there was a stackoverflow question on the first page when I googled the error report: <a href="http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s">Visual Studio setup problem</a></p> http://stackoverflow.com/questions/542672/net-how-to-have-escape-close-a-messagebox-show/542782#542782 1 Answer by Guvante for .NET: How to have Escape close a MessageBox.Show()? Guvante 2009-02-12T19:04:38Z 2009-02-12T19:04:38Z <p>It sounds like MessageBoxButtons.OkCancel is what you are looking for, you are just hung up on the fact that the question does not match Ok/Cancel.</p> <p>You could in theory write your own MessageBox form that does the same thing and associates No with the Escape key, that would accomplish exactly what you want, with a bit of extra work.</p> <p>Another option is to rephrase your question, for example:</p> <pre><code>MessageBox.Show(this, "The following operation will format your computer.\r\nPress Ok to continue, Cancel to abort", "Confirm Format", MessageBoxButtons.OkCancel, MessageBoxIcon.Warning); </code></pre> <p>Just an example, but it is likely the simplest solution to your dilemma.</p> http://stackoverflow.com/questions/538708/why-gethashcode-is-not-a-property-like-hashcode-in-net/538831#538831 -2 Answer by Guvante for Why GetHashCode is not a property like HashCode in .NET Guvante 2009-02-11T21:14:12Z 2009-02-11T21:14:12Z <p>You have to remember that the .NET Framework is designed to be accessed by a wide variety of languages.</p> <p>In theory you could create a compiler that is incapable of correctly overriding properties. While that would make for a pretty crappy compiler, it would not necessarily be illegal. (Remember properties are just methods with some meta data)</p> http://stackoverflow.com/questions/404838/do-you-prefer-if-var-or-if-var-0/404883#404883 8 Answer by Guvante for Do you prefer "if (var)" or "if (var != 0)"? Guvante 2009-01-01T11:40:15Z 2009-01-01T11:40:15Z <p>I would say that if you are comparing a true integer, then never do an implicit conversion to boolean, as it implies a different meaning to the variable.</p> <p>But then again that style is so popular is probably isn't too big of a deal, but from my work with C#, I write my C++ code in this style:</p> <p>Boolean or int that is basicaly a boolean:</p> <pre><code>if (val) </code></pre> <p>True integer with more than true/false being important:</p> <pre><code>if (val != 0) </code></pre> <p>Pointer of some kind:</p> <pre><code>if (val != NULL) </code></pre> <p>But as many people will say about coding styles that make no functional difference, it is probably best of all to be consistent, and if you are working with existing code, be consistent with that code.</p> http://stackoverflow.com/questions/326820/extension-methods-and-anonymous-types/326844#326844 1 Answer by Guvante for (Extension) Methods and Anonymous Types Guvante 2008-11-28T22:48:03Z 2008-11-28T22:48:03Z <p>The return type of Select is generic, and it is inferred from the lambda provided in most situations.</p> <p>For example:</p> <pre><code>List&lt;int&gt; list = new List&lt;int&lt;(); var val = list.Select(x =&gt; new {value = x, mod = x % 10}); </code></pre> <p>The return value of the select is based on the anonymous type I defined, and is extrapolated from the lambda, to a delegate, to the Select function. The Select function in this case does not know about or care about the particular anonymous type, as it is a generic type from its perspective.</p> http://stackoverflow.com/questions/53132/mouse-for-programmer/231887#231887 0 Answer by Guvante for Mouse for programmer Guvante 2008-10-23T23:02:31Z 2008-10-23T23:02:31Z <p><img src="http://www.logitech.com/repository/63/jpg/226.1.0.jpg" alt="Mouse Picture" /> <a href="http://www.logitech.com/index.cfm/mice_pointers/trackballs/devices/189&amp;cl=us,en" rel="nofollow">Cordless TrackMan® Optical</a></p> <p>I found that not having to move my entire arm around while using my mouse is helpful. And I found that the finger style trackball is easier to use. Not a good choice for 2D graphic design, but other than that it is useful.</p> http://stackoverflow.com/questions/211629/how-to-remove-a-shortcut-file-in-c/211631#211631 1 Answer by Guvante for How to remove a shortcut file in c# Guvante 2008-10-17T10:12:16Z 2008-10-17T10:12:16Z <p>You can use the standard file operations on shortcuts.</p> <p>I believe the file extension is lnk.</p> http://stackoverflow.com/questions/204363/is-there-a-way-to-import-a-3d-model-into-android/204375#204375 0 Answer by Guvante for Is there a way to import a 3D model into Android? Guvante 2008-10-15T11:20:13Z 2008-10-15T11:20:13Z <p>Not sure about Android specifically, but generally speaking you need a script in 3DS Max that manually writes out the formatting you need from the model.</p> <p>As to whether one exists for Android or not, I do not know.</p> http://stackoverflow.com/questions/203695/structure-vs-class-in-c/204102#204102 1 Answer by Guvante for Structure Vs Class in C# Guvante 2008-10-15T08:59:23Z 2008-10-15T08:59:23Z <p>To put it compactly, new is a misnomer for structs, calling new simply calls the constructor. The only storage location for the struct is the location it is defined.</p> <p>If it is a member variable it is stored directly in whatever it is defined in, if it is a local variable or parameter it is stored on the stack.</p> <p>Contrast this to classes, which have a reference wherever the struct would have been stored in its entirety, while the reference points somewhere on the heap. (Member within, local/parameter on stack)</p> <p>It may help to look a bit into C++, where there is not real distinction between class/struct. (There are similar names in the language, but they only refer to the default accessibility of things) When you call new you get a pointer to the heap location, while if you have a non-pointer reference it is stored directly on the stack or within the other object, ala structs in C#.</p> http://stackoverflow.com/questions/203930/c-streaming-sockets-how-to-separate-messages/204096#204096 0 Answer by Guvante for C# streaming sockets, how to separate messages? Guvante 2008-10-15T08:52:56Z 2008-10-15T08:52:56Z <p>You could also, if you wanted to preserve the plaintextness of it, specify a specific maximum size and pad the number via string.Format. (Say for instance only allowing 4 characters in the length) This avoids the problems of numbers in the useful datastream, and simplifies decoding as well.</p> <p>A final plaintext solution is to put a specific character between length and data, such as -, then grab single characters at a time till you hit a minus, decode the retrieved string (Ignoring the minus of course) and then use that to determine the length of the remaining string, and your output code which simply need to be changed to add that character in between.</p> http://stackoverflow.com/questions/204075/many-people-dont-know-how-to-multi-select-items-in-a-html-select-control-so/204088#204088 1 Answer by Guvante for Many people don't know how to multi-select items in a HTML <select> control, so...? Guvante 2008-10-15T08:49:16Z 2008-10-15T08:49:16Z <p>You could just use a manual list of items (Say as simple links), that have Javascript onclick behavior that deselects/selects manually. Basically by changing the css class between two values, and checking these css (Or some other attribute) during submission to determine the selections.</p> <p>This would allow the user to simply select an item by clicking, and deselect by clicking, rather than the standard Ctrl+Click requirement.</p> http://stackoverflow.com/questions/204046/can-learning-a-new-language-human-not-programming-help-your-career/204072#204072 0 Answer by Guvante for Can learning a new language (Human not programming) help your career? Guvante 2008-10-15T08:45:23Z 2008-10-15T08:45:23Z <p>Because of the prevalence of English in highly technical fields there isn't a huge demand for bi+ lingual people.</p> <p>This is not to say that having multiple languages is useless, in fact knowing the native tongue of customers, coworkers, or a partnered development firm could help a lot if they are having difficulty understanding you.</p> <p>So I would categorize it as being useful, but not appreciated by employers due to how focused the useful situations are.</p> http://stackoverflow.com/questions/202166/how-does-a-game-engine-that-models-objects-as-collections-of-components-work-at/202244#202244 0 Answer by Guvante for How does a game engine that models objects as "collections of components" work at runtime? Guvante 2008-10-14T18:20:42Z 2008-10-14T18:20:42Z <p>Could it be possible to give the objects a reference back to the Game object?</p> <p>This would allow the finding of the world position by going back to the Game object then drilling down to the world position.</p> http://stackoverflow.com/questions/202073/asp-net-and-gettype/202228#202228 0 Answer by Guvante for ASP.Net and GetType() Guvante 2008-10-14T18:16:16Z 2008-10-14T18:16:16Z <p>page.GetType().BaseType, it has been said before, but let me elaborate as to why.</p> <p>Aspx pages inherit from their code-behind pages, meaning that the inheritance hierarchy looks like this:</p> <pre><code>... Page BasePage Login ASP_Login </code></pre> <p>Where the top is the parent and the bottom is the child.</p> <p>This allows your code behind to be accessible from the aspx page, without requiring all of the generated code related to your actual aspx page to be copied into the base class page.</p> http://stackoverflow.com/questions/183923/compiler-fails-converting-a-constrained-generic-type/184208#184208 0 Answer by Guvante for Compiler fails converting a constrained generic type. Guvante 2008-10-08T18:37:55Z 2008-10-08T18:37:55Z <p>This will lead to a bit more code if you have a lot of ElementDefinitions you are worried about, but is probably the slickest you will get that doesn't involve is then as nonsense.</p> <pre><code> public void DoSomething&lt;G&gt;(G generic) where G : ElementDefinition { DetailElement detail = generic as DetailElement; if (detail != null) { detail.DescEN = "Hello people"; } else { //do other stuff } } </code></pre> <p>Another possible solution that I have used when I needed such information, in loo of a temporary object variable.</p> <pre><code>DetailElement detail = (DetailElement)(object)generic; </code></pre> <p>It works, but the as form is probably the best. </p> http://stackoverflow.com/questions/182133/design-of-inheritance-for-validate-interfaces/182190#182190 0 Answer by Guvante for Design of inheritance for Validate interfaces Guvante 2008-10-08T11:11:39Z 2008-10-08T11:11:39Z <p>As simple solution to the "can an object be validated" problem is to add a third interface.</p> <p>This third interface is an empty one that parents both of the others, meaning you can just check against that interface (Assuming you aren't worried about someone spoofing being validate-able), and then iteratively check against the possible validation interfaces if you need to actually validate.</p> <p>Example:</p> <pre><code>interface Validateable { } interface EmptyValidateable inherits Validateable //Or is it implements? { void validate() throws ValidateException; } interface Objectvalidateable inherits Validateable { void validate(Object validateObj); } </code></pre> http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182134#182134 6 Answer by Guvante for How do you advance beyond being an 'advanced' programmer? Guvante 2008-10-08T10:57:37Z 2008-10-08T10:57:37Z <p>I don't see a mention of Functional Programming, or other paradigm shifts. While I haven't personally gone through the "Ah-ha!" that such a paradigm shift can give you, it makes sense that such a change in your style will give you a new perspective on programming in general.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182122#182122 9 Answer by Guvante for What are some funny loading statements to keep users amused? Guvante 2008-10-08T10:54:24Z 2008-10-08T10:54:24Z <p>Creating Time-Loop Inversion Field</p> http://stackoverflow.com/questions/179745/speeding-up-java/179757#179757 5 Answer by Guvante for Speeding Up Java Guvante 2008-10-07T18:31:47Z 2008-10-07T18:31:47Z <p>Using StringBuilder in place of large sets of String concatenation gives a great relative performance boost.</p> <p>However, I can't avoid saying the general practice performance gaining benefit, Profiling. I don't know Java profiling off-hand (Only used the language academically), but profiling helps you identify problem sections of your code, and it is a lot easier to fix specific sections since you have something to look up.</p> http://stackoverflow.com/questions/123181/testing-if-an-object-is-a-dictionary-in-c/123191#123191 7 Answer by Guvante for Testing if an Object is a Dictionary in C# Guvante 2008-09-23T19:22:40Z 2008-10-06T09:53:48Z <p>Check to see if it implements IDictionary.</p> <p>See the definition of System.Collections.IDictionary to see what that gives you.</p> <pre><code>if (listBox.ItemsSource is IDictionary) { DictionaryEntry pair = (DictionaryEntry)listBox.SelectedItem; object value = pair.Value; } </code></pre> <p><strong>EDIT:</strong> Alternative when I realized KeyValuePair's aren't castable to DictionaryEntry</p> <pre><code>if (listBox.DataSource is IDictionary) { listBox.ValueMember = "Value"; object value = listBox.SelectedValue; listBox.ValueMember = ""; //If you need it to generally be empty. } </code></pre> <p>This solution uses reflection, but in this case you don't have to do the grunt work, ListBox does it for you. Also if you generally have dictionaries as data sources you may be able to avoid reseting ValueMember all of the time.</p> http://stackoverflow.com/questions/1742076/what-can-i-do-about-ambigous-wildcard-patterns-in-struts/1744145#1744145 Comment by Guvante on What can I do about ambigous wildcard patterns in Struts? Guvante 2009-11-17T23:12:11Z 2009-11-17T23:12:11Z If 2.1.9 is giving a better error message, then try getting it to work in that version then backport, if it is using the same logic with some additional checks then this trick should work. If it is a different method, then obviously it won't http://stackoverflow.com/questions/1670705/trying-to-count-specific-items-in-query/1670726#1670726 Comment by Guvante on Trying to Count specific items in QUERY Guvante 2009-11-03T23:11:30Z 2009-11-03T23:11:30Z Wouldn't ELSE 0 work better? http://stackoverflow.com/questions/1670695/eating-up-processing-power/1670723#1670723 Comment by Guvante on Eating up processing power Guvante 2009-11-03T23:05:04Z 2009-11-03T23:05:04Z This would be a good way to get your CPU down to 80%, but I think it may have slightly different effects in comparison to a more direct approach. Such as never causing a theoretical program to sleep. http://stackoverflow.com/questions/1663734/how-to-fix-this-program Comment by Guvante on how to fix this program? Guvante 2009-11-02T21:28:06Z 2009-11-02T21:28:06Z -1 for giving what looks like a homework problem and not actually asking a question. http://stackoverflow.com/questions/1017861/how-can-i-stop-my-visual-studio-from-launching-ie8-twice-when-i-click-start-with/1201766#1201766 Comment by Guvante on How can I stop my Visual Studio from launching IE8 TWICE when I click "Start Without Debugging" (Ctrl-F5)? Guvante 2009-08-01T05:05:12Z 2009-08-01T05:05:12Z @cwrea: My change wouldn't remove that behavior, it would fix the fact that the second page loaded in a different window. It seems as if VS is intentionally calling the about:blank page first, I do not know why, but I am glad your problem is fixed. http://stackoverflow.com/questions/1201753/how-do-i-compare-types-when-using-generics/1201848#1201848 Comment by Guvante on How do I compare types when using generics? Guvante 2009-07-29T17:32:24Z 2009-07-29T17:32:24Z Actually he is going through the entire hierarchy. Additionally, ICollection&lt;&gt; does not implement ICollection directly. http://stackoverflow.com/questions/1195594/is-there-a-java-tool-to-automate-the-reduction-of-class-and-method-visibility Comment by Guvante on Is there a Java tool to automate the reduction of class and method visibility? Guvante 2009-07-28T17:51:17Z 2009-07-28T17:51:17Z Clarification would be nice, do you want a tool to do regression analysis to determine what needs to be public and mark everything else as private, or do you want to be able to input some kind of list of what your public API should be and have it digest that to determine it? http://stackoverflow.com/questions/1149197/gc-collect/1149212#1149212 Comment by Guvante on GC.Collect() Guvante 2009-07-21T05:00:36Z 2009-07-21T05:00:36Z Very inclusive but concise http://stackoverflow.com/questions/925203/any-example-of-a-necessary-nullable-foreign-key/925220#925220 Comment by Guvante on Any example of a necessary nullable foreign key? Guvante 2009-07-11T05:13:32Z 2009-07-11T05:13:32Z RE: Neil Butterworth I have worked with such a system, and I can say that NULL is much more obvious (What better describer for nothing than nothing) Now if performance polling shows that NULL foreign keys are a problem then avoid them, in fact that was why the system did, but otherwise you are doing a premature optimization. (IMHO) http://stackoverflow.com/questions/1018963/is-it-necessary-to-wrap-streamwriter-in-a-using-block/1018985#1018985 Comment by Guvante on Is it necessary to wrap StreamWriter in a using block? Guvante 2009-06-19T17:45:37Z 2009-06-19T17:45:37Z Common misconception, Dispose is a way to tell consumers of your class that the object should be cleaned up, Finalizers are the way that the garbage collector cleans up when the object leaves scope or the program ends. http://stackoverflow.com/questions/1018963/is-it-necessary-to-wrap-streamwriter-in-a-using-block/1018980#1018980 Comment by Guvante on Is it necessary to wrap StreamWriter in a using block? Guvante 2009-06-19T17:43:31Z 2009-06-19T17:43:31Z Finalizers are the term for what does the clean up on exit. http://stackoverflow.com/questions/1018610/simplest-way-to-do-a-fire-and-forget-method-in-c/1018630#1018630 Comment by Guvante on Simplest way to do a fire and forget method in C#? Guvante 2009-06-19T17:40:54Z 2009-06-19T17:40:54Z There is no way to have a non-blocking method call that is guaranteed to run, so this is in fact the most accurate answer to the question IMO. If you need to guarantee execution then potential blocking needs to be introduced via a control structure such as AutoResetEvent (as Kev mentioned) http://stackoverflow.com/questions/967208/lr0-grammar Comment by Guvante on LR(0) grammar Guvante 2009-06-08T21:52:39Z 2009-06-08T21:52:39Z I would recommend restating as a real world problem, stackoverflow is not for doing your homework. http://stackoverflow.com/questions/761121/performance-issue-comparing-to-string-format/761135#761135 Comment by Guvante on Performance issue: comparing to String.Format Guvante 2009-04-17T16:35:21Z 2009-04-17T16:35:21Z JIT compiling only happens once, so that would explain a constant difference in timing between yours and the framework regardless of input size. http://stackoverflow.com/questions/301371/why-dictionary-is-preferred-over-hashtable-in-c/301384#301384 Comment by Guvante on Why Dictionary is preferred over hashtable in C#? Guvante 2009-04-17T05:29:54Z 2009-04-17T05:29:54Z Hashtable uses Object to hold things internally (Only non-generic way to do it) so it would also have to box/unbox.