User orj - Stack Overflowmost recent 30 from stackoverflow.com2010-02-09T21:36:17Zhttp://stackoverflow.com/feeds/user/20480http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2226476/problems-detecting-alt-key-on-the-control-keyup-event/2227765#22277650Answer by orj for Problems Detecting Alt Key on the Control.KeyUp eventorj2010-02-09T08:47:42Z2010-02-09T08:54:50Z<p>I hope you're not just setting a bool member variable in your class in response to the Alt key being pressed. </p>
<p>If you want to know if the Alt key is down while executing code in response to other events (eg mouse events) use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.modifierkeys.aspx" rel="nofollow">Control.ModifierKeys</a> property as it is far more reliable. It also means you don't have a redundant member variable.</p>
<p>If you are actually trying to detect if the user has pressed just a Modifier key by itself then @bluecoder's solution is probably what you want.</p>
http://stackoverflow.com/questions/2226081/why-does-net-use-a-rounding-algorithm-in-string-format-that-is-inconsistent-with8Why does .Net use a rounding algorithm in String.Format that is inconsistent with the default Math.Round() algorithm?orj2010-02-09T01:12:49Z2010-02-09T06:45:10Z
<p>I've noticed the following inconsistency in C#/.NET. I was wondering why it is so.</p>
<pre><code>Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.04, Math.Round(1.04, 1));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.05, Math.Round(1.05, 1));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.06, Math.Round(1.06, 1));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.14, Math.Round(1.14, 1));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.15, Math.Round(1.15, 1));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.16, Math.Round(1.16, 1));
Console.WriteLine();
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.04, Math.Round(1.04, 1, MidpointRounding.AwayFromZero));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.05, Math.Round(1.05, 1, MidpointRounding.AwayFromZero));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.06, Math.Round(1.06, 1, MidpointRounding.AwayFromZero));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.14, Math.Round(1.14, 1, MidpointRounding.AwayFromZero));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.15, Math.Round(1.15, 1, MidpointRounding.AwayFromZero));
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.16, Math.Round(1.16, 1, MidpointRounding.AwayFromZero));
</code></pre>
<p>Output:</p>
<pre><code>1.0 | 1.0
1.1 | 1.0
1.1 | 1.1
1.1 | 1.1
1.2 | 1.2
1.2 | 1.2
1.0 | 1.0
1.1 | 1.1
1.1 | 1.1
1.1 | 1.1
1.2 | 1.2
1.2 | 1.2
</code></pre>
<p>It appears that the default string formatting behaviour is to round using MidpointRounding.AwayFromZero rather than Math.Round()'s default of MidpointRounding.ToEven.</p>
http://stackoverflow.com/questions/2218556/storing-large-amounts-of-data-in-files-what-is-the-most-performant-option/2218827#22188271Answer by orj for Storing large amounts of data in files. What is the most performant option?orj2010-02-07T23:34:02Z2010-02-07T23:44:06Z<p>I agree with Am about using an embedded database like SQLite. It comes with significant benefits. The ability to layer an ORM on top of it is probably the most significant.</p>
<p>XML Serialization is handy, particularly when you need to be able to edit the XML by hand or process it with other XML tools like XSLT etc, but it also has some unavoidable performance problems. One important technique when using XML Serialization in .Net is to cache the XML Serializers. Or to have them created by <a href="http://msdn.microsoft.com/en-us/library/bk3w6240%28VS.80%29.aspx" rel="nofollow">sgen</a> on build.</p>
<p>The reason to cache the XML Serializer is related to the fact that the .Net runtime will automatically generate, compile and load an assembly containing a serializer if it can't find one in an already loaded assembly. This process can be really slow. Also constructing a new XMLSerializer instance can be quite slow. Hence why you should cache it. Be careful when caching the serializer though as different XMLSerializer constructors can produce different serializer implementations which behave differently. Particular with respect to namespaces, etc.</p>
<p>Then of course there is the usual performance implications of parsing a lot of text. Unfortunately that isn't easy to avoid with XML.</p>
<p>One of the reasons SQLite is a better choice than XML is related to the fact that it is, at its core, a fixed length record storage system. Any binary file with fixed length records is going to be fast to read, index and scan. Fixed block size file formats are almost always screamingly fast to read and write. I would recommend implementing one at some point for your own education.</p>
<p>If you still want a text based format (for ease of interoperability) and don't need the benefits of an ORM then consider using the <a href="http://www.filehelpers.com/quick_start_fixed.html" rel="nofollow">FileHelpers </a> library.</p>
http://stackoverflow.com/questions/1507587/high-quality-alternatives-to-hp-mercury-quality-center0High quality alternatives to HP (Mercury) Quality Center?orj2009-10-02T03:12:50Z2010-01-18T19:23:30Z
<p>I'm looking for a more developer friendly alternative to HP (Mercury) Quality Center. </p>
<p>I'm interested to find out what other tools developers & testers are using out there to manage their functional and regression test cases.</p>
http://stackoverflow.com/questions/456299/best-practice-override-ondisposebool-disposing-vs-disposed-event-on-component0Best practice: Override OnDispose(bool disposing) vs Disposed event on Component.orj2009-01-19T01:31:16Z2010-01-11T16:36:53Z
<p>In .Net the <code>Component</code> class exposes a <code>Disposed</code> event. It also provides a protected member <code>OnDispose(bool disposing)</code>.</p>
<p>What is the best practice for a custom component that extends <code>Component</code>? Override <code>OnDispose(bool)</code> or attach an event handler to <code>Disposed</code> on construction? </p>
<p>My feeling is that one should override <code>OnDispose(bool)</code> and seal the class.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/460198/best-free-3-way-merge-tool-for-windows4Best free 3-Way Merge Tool for Windows.orj2009-01-20T05:26:41Z2009-11-13T22:35:14Z
<p>I'm looking for a good <em>free</em> 3-way Merge/Diff tool for Windows.</p>
<p>I know of <a href="http://kdiff3.sourceforge.net/" rel="nofollow">KDiff3</a>. But I was looking for further recommendations.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/455294#4552947Answer by orj for What are Code Smells? What is the best way to correct them?orj2009-01-18T15:17:16Z2009-08-28T18:15:14Z<p><strong>Classes or structs with lots of member variables.</strong></p>
<p>A class or struct with more than about a dozen member variables probably hasn't been correctly factored into sub-components/classes.</p>
<p>eg:</p>
<pre><code>class Person
{
string Name;
string AddressLine1;
string AddressLine2;
string AddressLine3;
string Addressline4;
string City;
string ZipCode;
string State;
string Country;
string SpouseName;
string ChildName1;
string ChildName2;
string ChildName3;
int Age;
// and on and on and on
}
</code></pre>
<p>Should be:</p>
<pre><code>class Address
{
string[] AddressLines;
string ZipCode;
string State;
string Country;
}
class Person
{
string Name;
Address Address;
Person Spouse;
Person[] Children;
int Age;
}
</code></pre>
<p>And this is just one contrived example.</p>
http://stackoverflow.com/questions/1286218/how-to-add-typeahead-search-to-winforms-listbox-or-combobox0How to add typeahead search to WinForms ListBox (or ComboBox)?orj2009-08-17T04:59:54Z2009-08-17T04:59:54Z
<p>In .Net 2.0, the WinForms ListBox and ComboBox controls allow you to search through the list by pressing the first letter of the list item on the keyboard. Subsequence presses of that key will cycle through the list items starting with that letter.</p>
<p>A browser like FireFox on the other hand lets you "typeahead" search for items in a listbox or combobox. Ie, you select the listbox/combo and quickly type "New" and the first item in the box beginning with the letters "new" will be selected.</p>
<p>What is the best/easiest way of adding this sort of functionality to a .net 2.0 WinForms listbox or combobox control?</p>
http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code45How do you stop yourself from refactoring working but awful code?orj2009-01-18T15:03:32Z2009-08-15T04:33:55Z
<p>I have this problem. I can't stop myself from refactoring existing code that works but is, in my opinion (and perhaps objectively), badly designed or contains other "code smells". This can have a significant negative effect on my immediate productivity. But ultimately will be a big maintenance boon.</p>
<p>If you also suffer from this "affliction", how do you restrain yourself? Or at least manage the refactoring to avoid having to alter large chunks of existing code in order to make it maintainable for the long term.</p>
http://stackoverflow.com/questions/1252731/unable-to-send-images-on-udp-larger-than-10k/1252756#12527569Answer by orj for Unable to send images on UDP larger than 10Korj2009-08-10T01:05:14Z2009-08-10T01:29:44Z<p>Although the IP layer may allow UDP packets of up to 64k in size I think you will find that the maximum "in the wild" UDP packet size will be limited to the smallest MTU of the devices in between your source and destination.</p>
<p>The standard Ethernet MTU is ~1500 bytes. Some devices support "jumbo" frames of up to ~10kbytes to improve performance. But this sort of thing isn't generally supported over the public internet, only on LANs.</p>
<p>The IP layer may fragment the UDP packet (unless the no-fragment bit is set in the packet). But the recipient will only receive and defragment the packet if every fragment is received in order (or out of order within a specific time limit). Otherwise it will discard the packet.</p>
<p>It may also be the case that not all the devices in between your source and destination support the frame size of the sending device. I've encountered situations where I needed to lower the MTU on my routers to ~1450 bytes because intermediate routers were discarding packets at 1500. This is due to MTU discovery not working reliably. Ie, the sending device has no way of determinging what the MTU is of devices on its path to the destination. Somewhere in that path a device will be discarding packets it considers too large.</p>
<p>UDP is a very bad idea for what you are doing. You would be better off using TCP.</p>
<p>If you are concerned about the performance of TCP connection setup/tear down then keep the connection up for as long as possible.</p>
<p>UDP is only a good protocol for delivering data when you don't care too much about whether the target receives the packet or not. Delivery is not guaranteed. In all other cases use TCP.</p>
<p>If you are determined to use UDP you will have to implement <a href="http://en.wikipedia.org/wiki/Path%5FMTU%5Fdiscovery" rel="nofollow">path MTU discovery</a> in your protocol and prey that the routers/firewalls don't block the "fragmentation needed" ICMP packets. Which they shouldn't otherwise TCP wouldn't work either. But like I said, I've seen cases in the past where fragmentation needed ICMP packets are blocked or discarded and I had to manually tweak my own MTU.</p>
http://stackoverflow.com/questions/247607/how-do-i-trap-ocunit-test-pass-failure-messages-events4How do I trap OCUnit test pass/failure messages/events.orj2008-10-29T17:05:03Z2009-07-10T16:53:05Z
<p>I'm trying to use xcodebuild and OCUnit with my Continuous Integration server (<a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a>). </p>
<p>JetBrains offers test observer implementations for boost::test and CppUnit that format test output in a way that TeamCity can interpret. I need to do something similar for OCUnit if I want to use it.</p>
<p>There appears to be a SenTestObserver class in OCUnit but I'm ignorant of how exactly it should be used, and the <a href="http://www.sente.ch/software/ocunit/" rel="nofollow">OCUnit homepage</a> doesn't seem to provide any documentation on the matter.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/1048932#10489320Answer by orj for What's the best name for a non-mutating "add" method on an immutable collection?orj2009-06-26T12:43:40Z2009-06-26T12:43:40Z<p>C#-ish pseudo code follows:</p>
<pre><code>interface Foo
{
// Constructors
Foo();
Foo(params Foo[] foos);
// Instance method
Foo Join(params Foo[] foos);
// Class method
static Foo Join(params Foo[] foos);
}
</code></pre>
<p>So you could call things like this:</p>
<pre><code>var f0 = new Foo();
var f1 = new Foo(new Foo(), new Foo(), new Foo());
var f2 = Foo.Join(new Foo(), new Foo(), new Foo());
var f3 = f0.Join(new Foo(), new Foo(), new Foo());
var f4 = new Foo(new Foo(new Foo()), new Foo(), new Foo(new Foo()));
</code></pre>
<p>Etc....</p>
http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer3How to convert from System.Enum to base integer?orj2009-05-26T01:17:29Z2009-05-27T01:18:44Z
<p>I'd like to create a generic method for converting any System.Enum derived type to its corresponding integer value, without casting and preferably without parsing a string.</p>
<p>Eg, what I want is something like this:</p>
<pre><code>// Trivial example, not actually what I'm doing.
class Converter
{
int ToInteger(System.Enum anEnum)
{
(int)anEnum;
}
}
</code></pre>
<p>But this doesn't appear to work. Resharper reports that you can not cast expression of type 'System.Enum' to type 'int'.</p>
<p>Now I've come up with this solution but I'd rather have something more efficient.</p>
<pre><code>class Converter
{
int ToInteger(System.Enum anEnum)
{
return int.Parse(anEnum.ToString("d"));
}
}
</code></pre>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/419547/net-wsdl-command-line-utility-error0.Net WSDL command line utility error orj2009-01-07T08:17:29Z2009-05-21T09:58:12Z
<p>I'm pointing the .Net command line WSDL utility that ships with Visual Studio 2005 at a web service implemented in Java (which I have no control over) and it spits out the following error:</p>
<pre><code>WSDL : error WSDL1: Unable to cast object of type 'System.Xml.XmlElement'
to type 'System.Web.Services.Description.ServiceDescriptionFormatExtension'.
</code></pre>
<p>Yet if I point Visual Studio 2005 itself at the service via the Add Web Reference dialog it generates a proxy class for me just fine.</p>
<p>I'm using the WSDL utility to generate all my other service proxies just fine (though an old one does emit a bunch of warnings).</p>
<p>Currently I'm pointing the WSDL utility at the URLs of deployed web services. All of which were developed in Java.</p>
<p>I want to use the WSDL command line utility in the build process to ensure I have the most up-to-date proxy code each time I compile.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768393#7683938Answer by orj for What is the best comment in source code you have ever encountered?orj2009-04-20T14:04:54Z2009-04-20T14:04:54Z<pre><code>// BEGIN HACK
...
// END HACK: I feel dirty.
</code></pre>
http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/767075#7670750Answer by orj for What components of the .Net framework should a professional developer typically avoid?orj2009-04-20T06:03:59Z2009-04-20T06:03:59Z<p>There is lots to avoid in the WinForms library.</p>
<p>Avoid DataBinding to most standard WinForms controls. There are many bugs in that area which will lead to lots of head scratching. Or at least that has been my experience. NumericUpDown is a good example of this buggy mess.</p>
<p>Also avoid the standard WinForms controls when dealing with large datasets. They do a lot of data copying and can't deal well with large datasets. </p>
<p>Avoid ListView in "Virtual" mode as it is full of bugs.</p>
<p>In general I just recommend staying away from WinForms. If you have the option go for WPF or at least buy a good, well supported (and hopefully less buggy) 3rd party forms library.</p>
http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/653170#6531700Answer by orj for Do I need to dispose a web service reference in ASP.NET?orj2009-03-17T06:19:01Z2009-03-17T06:19:01Z<p>Objects that implement IDispose should be disposed of manually to assist the garbage collector. </p>
<p>If you object is short lived use a <code>using</code> block. For objects that can be retained ensure that they object that retains them disposes of them when it is also disposed.</p>
http://stackoverflow.com/questions/617405/workaround-for-the-imagelist-transparency-bug0Workaround for the ImageList transparency bug?orj2009-03-06T01:13:48Z2009-03-06T03:42:50Z
<p>If you add an PNG image to an ImageList control and use that ImageList with a ListView or TreeView in a Windows Forms (.Net 2.) application the icons shown in the ListView have a blue "halo" around them.</p>
<p>Eg:</p>
<p><img src="http://deeperdesign.wordpress.com/files/2009/03/blue-halo.png" alt="alt text" /></p>
<p>Does anyone know a work around that allows you to add 32bit PNGs with an Alpha channel to an ImageList and retain the transparent pixels and avoid the halo effect/bug?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images/617533#6175330Answer by orj for Where can one find free software icons / images?orj2009-03-06T02:33:32Z2009-03-06T02:33:32Z<p>See also: <a href="http://damieng.com/creative/icons/silk-companion-1-icons" rel="nofollow">Silk Companion Icons</a>.</p>
http://stackoverflow.com/questions/589345/additional-icons-for-the-fam-fam-fam-silk-iconset4Additional icons for the Fam Fam Fam Silk Iconset. [closed]orj2009-02-26T06:23:18Z2009-02-26T06:46:29Z
<p>The <a href="http://www.famfamfam.com/lab/icons/silk/" rel="nofollow">FamFamFam Silk icons</a> are very popular. However they don't cover <strong>everything</strong>. Once I found an additional set of FamFamFam Silk remixes but for the life of me I can not find these remixed icons again.</p>
<p>What icons exist on the net that are Creative Commons licensed that fit in with the style of the Silk icon set.</p>
http://stackoverflow.com/questions/540179/how-do-i-shorten-a-clearcase-views-load-directory2How do I shorten a clearcase view's load directory?orj2009-02-12T05:33:36Z2009-02-12T17:10:01Z
<p>In Clearcase I have a VOB with a path like this:</p>
<pre><code>\Department\ProductGroup\Product1\Development
</code></pre>
<p>I have a view with a Config Spec like this:</p>
<pre><code>element * CHECKEDOUT
element * .../mybranch/LATEST
element * /main/LATEST -mkbranch mybranch
load \Department\ProductGroup\Product1
</code></pre>
<p>All the source code for Product1 is in the Development directory. Nothing I care about exists outside this directory. All references in the code are relative to this directory.</p>
<p>I have created the above Clearcase view in the directory c:\dev</p>
<p>Presently the above setup creates a directory:</p>
<pre><code>c:\dev\Department\ProductGroup\Product1\Development
</code></pre>
<p>All the parent directories to <code>Development</code> are empty. I'd rather have just the following directories.</p>
<pre><code>c:\dev\Product1
</code></pre>
<p>Where <code>c:\dev\Product1</code> mapped to the VOB path <code>\Department\ProductGroup\Product1\Development</code>. Is this possible?</p>
http://stackoverflow.com/questions/253785/php-mvc-symfony-zend-vs-asp-mvc-vs-spring-mvc-vs-ruby-on-rails7PHP MVC (symfony/Zend) vs ASP MVC vs Spring MVC vs Ruby on Rails?orj2008-10-31T14:48:55Z2008-12-01T19:43:22Z
<p>I'm paralyzed by choice. </p>
<p>I know PHP, C# and Java fairly well as languages. Most of my web development in the past has been in PHP (with my own or other OSS frameworks). I've spent the last 2-3 years developing desktop GUI apps in C#. Before that I was doing desktop GUI apps in Java (with a little Servlets/JSP).</p>
<p>I want to develop a social web 2.0 site (in my own time) and in the process also add to my "salable" skill set (ie, what people would hire me for).</p>
<p>Do I:</p>
<ol>
<li>Go with what I know best and do it in PHP but use the latest OSS frameworks (eg, Zend).</li>
<li>Learn ASP MVC and extend my most recently acquired skill set to include web technologies.</li>
<li>Return to Java and learn something like Spring MVC.</li>
<li>Go with something entirely new like Ruby on Rails.</li>
</ol>
http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/253306#2533061Answer by orj for Create a cross platform Windows, Mac OS X applicationorj2008-10-31T12:18:40Z2008-10-31T12:18:40Z<p>As others have mentioned is is definitely possible to create good looking cross platform GUI in Java on both Windows and Mac. However if you want your app to blend in and behave in a way that makes it "feel" like an application designed from the ground up for the platform it is running on, you really have to develop the GUI and user experience for each version of the application separately.</p>
<p>If you analyze what your application is going to do and figure that there is a significant portion of code/logic that could be shared between platforms then write that portion in a portable way in a language that is available on both systems. C, C++, Java, Python, Ruby, etc. If there isn't a significant portion, ie most of the code is going to be for the GUI then there is less of a case for sharing any code at all.</p>
<p>In the case that there is a significant portion of common code, I would suggest looking into Python and Ruby as implementation languages as there are Cocoa bindings for those languages on the Mac and on Windows with the use of IronPython and IronRuby you could use reuse that code in a .Net application as well. </p>
http://stackoverflow.com/questions/247059/is-there-a-newline-constant-defined-in-java-like-environment-newline-in-c6Is there a Newline constant defined in Java like Environment.Newline in C#?orj2008-10-29T14:43:35Z2008-10-29T17:01:47Z
<p>In C# there is the static property <a href="http://msdn.microsoft.com/en-us/library/system.environment.newline.aspx" rel="nofollow">Environment.Newline</a> that changed depending on the running platform.</p>
<p>Is there anything similar in Java?</p>
http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/225290#2252900Answer by orj for Tools for PHP code refactoringorj2008-10-22T11:13:38Z2008-10-22T11:13:38Z<p>As far as I know, the only IDEs that has any significant Refactoring support for PHP are <a href="http://www.zend.com/en/products/studio/" rel="nofollow">Zend Studio</a> from the makers of PHP and the Eclipse PHP plugin. Though the features are very basic. Nothing that I know of has the features of products like Resharper for C# etc.</p>
http://stackoverflow.com/questions/147378/options-for-refactoring-bits-of-code-away-from-native-c/225281#2252811Answer by orj for Options for refactoring bits of code away from native C++?orj2008-10-22T11:10:28Z2008-10-22T11:10:28Z<p>As <a href="http://stackoverflow.com/questions/147378/options-for-refactoring-bits-of-code-away-from-native-c#147446">Aaron Fischer</a> suggests, try recompiling your C++ application with the /clr option turned on and then start leveraging the .Net platform.</p>
<p>CLI/C++ is pretty easy to pick up if you know C# and C++ already and it provides the bridge between the .Net world and native C++.</p>
<p>If your current C++ code can't compile cleanly with /clr turned on then I'd suggest trying to build your application as a static lib (without /clr enabled) and then have your main() be in a CLI/C++ project that calls your legacy app entry point. That way you can at least start leveraging .Net for new functionality.</p>
<p>For examples of "legacy" C/C++ apps that have been "ported" to .Net CLI/C++ check out the .Net ports of <a href="http://www.vertigosoftware.com/Quake2.htm" rel="nofollow">Quake 2</a> and <a href="http://gregs-blog.com/2008/01/22/update-quake-3-arena-net-port-is-done/" rel="nofollow">Quake 3: Arena</a>.</p>
http://stackoverflow.com/questions/225032/can-i-create-a-unit-test-for-a-method-which-marshalls-a-value-from-an-intptr/225200#2252000Answer by orj for Can I create a unit test for a method which marshalls a value from an IntPtr?orj2008-10-22T10:44:12Z2008-10-22T10:54:51Z<p>My reading of your question makes me think that what you're asking is:</p>
<blockquote>
<p>How do I create functions that mock the native call I'm making that returns an IntPtr to a double or unicode string so I can pass that IntPtr to the functions I want to test?</p>
</blockquote>
<p>Something like this might help:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
private static double myDouble = 3.14;
private static unsafe void TestPtrToDouble()
{
fixed(double* pDouble = &myDouble)
{
IntPtr intp = new IntPtr(pDouble);
double[] copy = new double[1];
Marshal.Copy(intp, copy, 0, 1);
Debug.Assert(copy[0] == myDouble);
}
}
private static char[] myString = { 'T', 'h', 'i', 's', ' ', 'i', 's', ' ', 'm', 'y', ' ', 's', 't', 'r', 'i', 'n', 'g' };
private static unsafe void TestPtrToUnicodeString()
{
fixed (char* pChar = &myString[0])
{
IntPtr intp = new IntPtr(pChar);
string copy = Marshal.PtrToStringUni(intp);
Debug.Assert(copy == "This is my string");
}
}
static void Main(string[] args)
{
TestPtrToUnicodeString();
TestPtrToDouble();
}
}
}
</code></pre>
<p>Something to be very mindful of is that you won't be able to return the mock IntPtr's created from a function. Ie, you can't create a mocked version of your P/Invoke calls and expect things to work.</p>
<p>The .Net runtime moves managed objects about in memory (part of the garbage collection process). The <code>fixed</code> statement stops this from happening for the member/object you take the address of. But only for the life of the block. The block ends if you return from a function so the pointer value may be invalid after a return. Ie, your IntPtr may be referencing memory that no longer contains the data you want to marshal.</p>
<p>Check out the MSDN documentation on <a href="http://msdn.microsoft.com/en-us/library/aa288474(VS.71).aspx" rel="nofollow">unsafe code</a> and the <a href="http://msdn.microsoft.com/en-us/library/f58wzh21(VS.80).aspx" rel="nofollow">fixed statement</a>. But what I've got here should send you in the right direction for constructing an NUnit test for your marshaling code.</p>
<p>Also note that this code requires the /unsafe compiler option to compile. If you need your assembly to run in an environment which doesn't support unsafe assemblies you'll have to have the test code in another assembly. But since you're already using P/Invoke I imagine that isn't the case.</p>
http://stackoverflow.com/questions/223634/linux-programming-environment-configuration/224984#2249843Answer by orj for Linux Programming environment configuration.orj2008-10-22T09:15:49Z2008-10-22T09:37:42Z<p>Where possible code against the system/distro provided libraries. This makes it easiest to ship a product on that distro. </p>
<p>However, if you are building a commercial application, because there are so many flavors of Linux distros that can mean you have to maintain a plethora of different application builds for each distro. Which isn't necessarily a bad thing as it means you can more cleanly integrate with the distro's package management system.</p>
<p>But in the case where you can't do that it should be fairly easy to download the source of each 3rd party dependency you have and integrate the building of that dependency into a static lib that is linked to your executable. That way you know exactly what you're linking against but has the downside of bloating out your executable size. This can also be required if you need a specific library (or version) not provided by the distro.</p>
<p>If you want your code to build on as broad a variety of different Unix systems then you're probably wise looking into GNU <a href="http://www.gnu.org/software/autoconf/" rel="nofollow">autoconf</a> and <a href="http://www.gnu.org/software/automake/" rel="nofollow">automake</a>. These help you construct a <code>configure</code> script and <code>makefile</code> for your project so that it will build on practically any Unix system.</p>
<p>Also look into <a href="http://pkg-config.freedesktop.org/wiki/" rel="nofollow">pkg-config</a> which is used quite a bit now on Linux distributions for helping you include and link to the right libraries (for libs that support pkg-config).</p>
<p>If you're using subversion to manage your source there is a "convention" that most subversion repositories use to manage their own code and "vendor" code.</p>
<p>Most svn repositories have a "vendor" tree (that goes along with the trunk, branches & tags trees). That is the top for all 3rd party vendor code. In that directory you have directories for each library you use. Eg:</p>
<pre><code>branches/
tags/
trunk/
vendor/somelib
vendor/anotherlib
</code></pre>
<p>Beneath each of these libs is a directory for each library version and a "current" directory for the most up-to-date version in your repository.</p>
<pre><code>vendor/somelib/1.0
vendor/somelib/1.1
vendor/somelib/current
</code></pre>
<p>Then your project's tree should be laid out something like this:</p>
<p>trunk/source # all your code in here
trunk/libs # all vendor code in here</p>
<p>The libs directory should be empty but it will have <code>svn:externals</code> meta data associated with it, via:</p>
<pre><code>svn propedit svn:externals trunk/libs
</code></pre>
<p>The contents of this property would be something along the lines of (assumes subversion 1.5):</p>
<pre><code>^/vendor/somelib/current somelib
^/vendor/anotherlib/1.0 anotherlib
</code></pre>
<p>This means that when you checkout your code subversion also checks out your vendor libraries into your trunk/libs directory. So that when checked out it looks like this:</p>
<pre><code>trunk/source
trunk/libs/somelib
trunk/libs/anotherlib
</code></pre>
<p>This is described (probably a whole lot better) in the <a href="http://svnbook.red-bean.com/en/1.5/index.html" rel="nofollow">Subversion Book</a>. Particularly the section on handling <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.vendorbr.html" rel="nofollow">vendor branches</a> and <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.externals.html" rel="nofollow">externals</a>.</p>
http://stackoverflow.com/questions/224204/why-use-infinite-loops/224914#2249140Answer by orj for Why use infinite loops?orj2008-10-22T08:43:47Z2008-10-22T08:43:47Z<p>Infinite loops are useful mostly in daemon/service processes or the main loop in a game. You can even get cute with them, eg:</p>
<pre><code>const bool heatDeathOfTheUniverse = false;
do
{
// stuff
} while(!heatDeathOfTheUniverse);
</code></pre>
<p>They should <strong>not</strong> be used to "wait" for things like threads as was suggested by <a href="http://stackoverflow.com/questions/224204/why-use-infinite-loops#224217">Fry</a>. You can use the Join method of a thread object for that.</p>
<p>However, if you're in a situation where your tech lead says, "infinite loops are verboten & so are multiple method/function returns & breaks" you can also do stuff like this:</p>
<pre><code>bool done = false;
while(!done)
{
if(done = AreWeDone()) continue; // continue jumps back to start of the loop
}
</code></pre>
<p>Of course if you tech lead is forcing you to do such things you should start looking for a new job.</p>
<p>For more details on the continue keyword see <a href="http://msdn.microsoft.com/en-us/library/6e3dc2z3(VS.80).aspx" rel="nofollow">this MSDN</a> article.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/224795#2247953Answer by orj for How do you deal with NUL?orj2008-10-22T08:02:01Z2008-10-22T08:10:13Z<p>If I remember correctly most C compilers define NULL like this:</p>
<pre><code>#define NULL ((void*)0)
</code></pre>
<p>This is to ensure that NULL is interpreted as being a pointer type (in C). However this can cause issues in the much more type strict world of C++. Eg:</p>
<pre><code>// Example taken from wikibooks.org
std::string * str = NULL; // Can't automatically cast void * to std::string *
void (C::*pmf) () = &C::func;
if (pmf == NULL) {} // Can't automatically cast from void * to pointer to member function.
</code></pre>
<p>Therefore in the current C++ standard null pointers should be initialized with the literal 0. Obviously because people are so used to using the NULL define I think a lot of C++ compilers either silently ignore the issue or redefine NULL to be 0 in C++ code. Eg:</p>
<pre><code>#ifdef __cplusplus
#define NULL (0)
#else
#define NULL ((void*)0)
#endif
</code></pre>
<p>The C++x0 standard now defines a <code>nullptr</code> keyword to represent null pointers. Visual C++ 2005's CLI/C++ compiler also uses this keyword when setting managed pointers to null. In current compilers you can create a template to emulate this new keyword.</p>
<p>There is a much more detailed article on <a href="http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/nullptr" rel="nofollow">wikibooks.org</a> discussing this issue.</p>
http://stackoverflow.com/questions/2226081/why-does-net-use-a-rounding-algorithm-in-string-format-that-is-inconsistent-with/2226157#2226157Comment by orj on Why does .Net use a rounding algorithm in String.Format that is inconsistent with the default Math.Round() algorithm?orj2010-02-09T01:54:02Z2010-02-09T01:54:02ZI don't think that this problem has anything to do with double precision or round-triping. I just think String.Format() is rounding using MidpointRounding.AwayFromZero.http://stackoverflow.com/questions/2226081/why-does-net-use-a-rounding-algorithm-in-string-format-that-is-inconsistent-with/2226164#2226164Comment by orj on Why does .Net use a rounding algorithm in String.Format that is inconsistent with the default Math.Round() algorithm?orj2010-02-09T01:50:45Z2010-02-09T01:50:45ZI can't find anywhere in the docs for CultureInfo where it defines the rounding algorithm used when formatting numbers.http://stackoverflow.com/questions/1168915/which-one-is-more-effecient-listint-or-int/1168970#1168970Comment by orj on Which one is more effecient : List<int> or int[]orj2009-07-23T01:43:41Z2009-07-23T01:43:41ZA single run of a test like this is meaningless. You need to run the test many times and average the results. But List<int> will probably always be slower due to the method call overhead a class implies.http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer/909884#909884Comment by orj on How to convert from System.Enum to base integer?orj2009-05-27T01:03:17Z2009-05-27T01:03:17ZI want to convert ANY enum value. Ie, I have a variety of classes that have enum fields that are being processed by some code in a generic way. This is why a simple cast to int is not appropriate.http://stackoverflow.com/questions/540179/how-do-i-shorten-a-clearcase-views-load-directory/540289#540289Comment by orj on How do I shorten a clearcase view's load directory?orj2009-02-13T07:43:31Z2009-02-13T07:43:31ZThanks for all the info but from your description the key problem of long paths only appears to be "solvable" by using subst.http://stackoverflow.com/questions/419547/net-wsdl-command-line-utility-error/495300#495300Comment by orj on .Net WSDL command line utility error orj2009-02-02T22:31:16Z2009-02-02T22:31:16Z/protocol:soap12 appears to have fixed the problem. Thanks.http://stackoverflow.com/questions/483215/how-to-do-dynamic-object-creation-and-method-invocation-in-net-3-5Comment by orj on How to do dynamic object creation and method invocation in .NET 3.5orj2009-01-27T12:38:15Z2009-01-27T12:38:15ZI think you need to clarify your question. Are you trying to dynamically create the type, ie, dynamically define a class, as well as dynamically call a method on that type?http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455327#455327Comment by orj on How do you stop yourself from refactoring working but awful code?orj2009-01-18T15:35:37Z2009-01-18T15:35:37ZIn the organization I'm working for at the moment there is NO issue tracker. That in itself should tell you something about the quality of the code.http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/264203#264203Comment by orj on What are Code Smells? What is the best way to correct them?orj2009-01-18T15:22:47Z2009-01-18T15:22:47ZWrapping an exception to add additional context information or for other purposes (cross application domain serialization perhaps) can be useful. In general I wholeheartedly agree.http://stackoverflow.com/questions/161873/k-r-exercise-my-code-works-but-feels-stinky-advice-for-cleanup/162226#162226Comment by orj on K & R Exercise: My Code Works, But Feels Stinky; Advice for Cleanup?orj2008-10-17T11:13:13Z2008-10-17T11:13:13ZThere may be bugs in that code. I didn't test it super thoroughly. You are right. The while loop condition in Trim() should also be testing that end is greater than s. Assuming strings grow up in memory addresses.http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c/161875#161875Comment by orj on initialize a const array in a class initializer in C++orj2008-10-17T11:06:19Z2008-10-17T11:06:19ZThen you should be using an enum type.