User norheim.se - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T22:09:46Zhttp://stackoverflow.com/feeds/user/19220http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527785/private-assemblies-under-sub-folder-cannot-load-dependencies/1531386#15313860Answer by norheim.se for Private assemblies under sub-folder cannot load dependenciesnorheim.se2009-10-07T12:40:10Z2009-10-07T12:40:10Z<p>The reason why .NET objects to this is that you are trying to load different versions of the same assembly into the appdomain. You have to decide if you can let PrivateAssembly1.dll and PrivateAssembly2.dll actually use the same library version. This will save you quite a lot of trouble if it is possible.</p>
<p>It is indeed possible to force both versions of Dependency.dll to load into your appdomain by adding a custom resolver that loads it, but be aware that you are entering a rather narrow path if you do this. For instance, there will be different versions of any static variables in both versions, and also the types created in the Folder1\Dependency.dll assembly will not be recognized by the Folder2\Dependency.dll assembly, and vice versa, even though the types might seem to be "the same".</p>
http://stackoverflow.com/questions/1517172/number-of-comparisons-using-merge-sort/1517204#15172041Answer by norheim.se for Number of Comparisons using merge sort.norheim.se2009-10-04T19:41:44Z2009-10-05T06:23:20Z<p>According to <a href="http://en.wikipedia.org/wiki/Merge%5Fsort" rel="nofollow">Wikipedia</a>: <em>In the worst case, merge sort does an amount of comparisons equal to or slightly smaller than</em> (n ⌈lg n⌉ - 2^⌈lg n⌉ + 1)</p>
http://stackoverflow.com/questions/1507962/thread-safety-of-uuidcreatesequential-and-p-invoke-calls-in-general0Thread safety of UuidCreateSequential and p/invoke calls in generalnorheim.se2009-10-02T06:14:11Z2009-10-02T07:07:36Z
<p>I am working with a system that uses GUIDs as keys in most database tables. The guids are created using <em>UuidCreateSequential</em>, in order to be nice to the database indexes.</p>
<p>C++ syntax, according to <a href="http://msdn.microsoft.com/en-us/library/aa379322%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa379322%28VS.85%29.aspx</a> :</p>
<pre><code>RPC_STATUS RPC_ENTRY UuidCreateSequential(
UUID __RPC_FAR *Uuid
);
</code></pre>
<p>p/invoke.net suggests the following signature:</p>
<pre><code>[DllImport("rpcrt4.dll", SetLastError=true)]
static extern int UuidCreateSequential(out Guid guid);
</code></pre>
<p>The question is - how can I know whether this method is safe to invoke from several threads simultaneously? Initial tests show that this might be safe, but I haven't found any significant information regarding this on MSDN or Google. Is there any standard convention regarding calls to the windows API that I can rely on?</p>
http://stackoverflow.com/questions/1458314/number-of-1s-in-32-bit-number/1458330#14583301Answer by norheim.se for number of 1's in 32 bit numbernorheim.se2009-09-22T05:53:58Z2009-09-22T05:53:58Z<p>You can define it recursively: </p>
<pre><code>int bitcount(int x) {
return (x==0) ? 0 : (x & 1 + bitcount(x/2));
}
</code></pre>
<p>The code above is not tested, and probably only works for x>=0. Hopefully, you will get the idea anyways...</p>
http://stackoverflow.com/questions/1447936/how-have-modern-oo-languages-pretty-much-eliminated-the-overhead-for-in-proces/1447948#14479482Answer by norheim.se for How have "modern OO languages pretty much eliminated [the] overhead for in-process calls"?norheim.se2009-09-19T06:26:26Z2009-09-19T06:26:26Z<p>Modern compilers will actually inline the method for you if it is short (and not virtual), which gives some performance gain.</p>
<p>Apart from that, I don't think that method calls in particular have become so much faster. But on the other hand the computers have. In all cases (but possibly the most extreme ones), it is a better investment to focus on readability, rather than making long methods for performance reasons.</p>
http://stackoverflow.com/questions/1446181/simple-fun-c-asterisk-hill/1446204#14462040Answer by norheim.se for Simple fun C++ Asterisk Hillnorheim.se2009-09-18T18:32:28Z2009-09-18T18:37:45Z<p>Actually, you can do it completely without for loops if you define the problem recursively. </p>
<p>Anyways... If you go for the looping version, let i loop through 0..N-1, and then have an inner loop printing N-2*abs(i-N/2) stars.</p>
http://stackoverflow.com/questions/736908/operation-is-not-valid-due-to-the-current-state-of-the-object/736933#7369331Answer by norheim.se for Operation is not valid due to the current state of the objectnorheim.se2009-04-10T07:10:52Z2009-04-10T07:10:52Z<p>Your question unfortunately doesn't contain enough information to be given a straight answer.</p>
<p>However, you could definitely try to analyze the Clone method of the object throwing exceptions at you using <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a>.</p>
http://stackoverflow.com/questions/721002/why-the-result-is-different-for-this-problem/721008#7210082Answer by norheim.se for Why the result is different for this problem?norheim.se2009-04-06T11:15:10Z2009-04-06T11:15:10Z<p>It is because computers do maths in base 2, and hence many decimal floating point numbers can not be represented exactly with a limited number of digits.</p>
http://stackoverflow.com/questions/580638/two-projects-referring-to-one-project/580768#5807680Answer by norheim.se for Two projects referring to one project.norheim.se2009-02-24T07:15:14Z2009-02-24T07:15:14Z<p>I think you should consider what the original reason for splitting your software into several assemblies (projects?) was. Plain "Utilities" assemblies often tend to become sinks attracting all sorts of garbage. If you can't think of any such reason, you can definitely put it all in one assembly, and split it later on during development when you have had a better chance to get the full picture.</p>
<p>If there is a certain functionality Z that you want to be reusable, then create a separate project for it.</p>
http://stackoverflow.com/questions/578920/use-of-return-keyword-in-code-block/578933#5789330Answer by norheim.se for Use of return keyword in code blocknorheim.se2009-02-23T19:15:08Z2009-02-23T19:15:08Z<p>Executing the return statement will make the execution jump out of the method. Without the return, it would simply go on with the next statement instead.</p>
http://stackoverflow.com/questions/578766/c-homework-control-structures-for-if/578913#5789131Answer by norheim.se for C# Homework - control structures (for, if)norheim.se2009-02-23T19:09:49Z2009-02-23T19:09:49Z<p>If you get this assignment as a computer science student, you'd probably want to solve this using <a href="http://en.wikipedia.org/wiki/Dynamic_programming" rel="nofollow">Dynamic Programming</a>.</p>
http://stackoverflow.com/questions/575217/whats-a-good-example-for-class-inheritance/575234#5752340Answer by norheim.se for What's a good example for class inheritance?norheim.se2009-02-22T16:56:24Z2009-02-22T16:56:24Z<p>I think Shape is a good abstract class. There are both 2D and 3D shapes. The 2D shapes typically have area while 3D shapes have volume. Both can have a "location" or "mass center".</p>
<p>Some suggestions:</p>
<pre><code>class Shape {..}
class Shape2D extends Shape {...}
class Circle extends Shape2D {...}
class Rectangle extends Shape2D {...}
class Polygon extends Shape2D {...}
class Shape3D extends Shape {...}
class Sphere extends Shape3D {...}
</code></pre>
http://stackoverflow.com/questions/575173/whats-your-favorite-way-to-debug-your-program-in-visual-studio/575194#5751940Answer by norheim.se for What's your favorite way to debug your program in Visual Studio?norheim.se2009-02-22T16:42:02Z2009-02-22T16:42:02Z<p>One of my AHA-moments in VS200x-debugging was realizing that I can use "Attach to process..." in order to start debugging an executable that already is running. For large solutions, it is surprisingly often faster to launch the application in "normal" fashion and then attach Visual Studio to it, compared to starting the debugging session by pressing F5.</p>
http://stackoverflow.com/questions/566367/ui-past-present-future/566380#5663801Answer by norheim.se for UI Past, Present, Futurenorheim.se2009-02-19T17:43:08Z2009-02-19T17:43:08Z<p>I think <strong>portability</strong> also is worth mentioning. Quite often, the UI components are what prevents the application from being ported to other platforms.</p>
http://stackoverflow.com/questions/561227/byte-width-of-a-value-type/561258#5612582Answer by norheim.se for Byte width of a value typenorheim.se2009-02-18T14:27:24Z2009-02-18T15:48:31Z<p>Can you use the Marshal.SizeOf method?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/y3ybkfb3.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/y3ybkfb3.aspx</a></p>
<p>EDIT: NB! Read Tor Haugen's comment prior to actually doing this.</p>
http://stackoverflow.com/questions/561282/how-do-i-return-an-object-from-a-function-in-delphi-without-causing-access-violat/561302#5613020Answer by norheim.se for How do i return an object from a function in Delphi without causing Access Violation?norheim.se2009-02-18T14:38:10Z2009-02-18T14:38:10Z<p>Don't free the object before you are done invoking the methods on it. You are currently invoking the Count method on a destroyed object, hence the error.</p>
<p>Why don't you create the string list in the calling function instead, and pass its reference to the method that fills it? Or make the string list a member of a class, and free it when you free the class that owns it?</p>
http://stackoverflow.com/questions/541277/how-to-merge-two-source-files-easily/541311#5413111Answer by norheim.se for How to merge two source files easily?norheim.se2009-02-12T13:48:46Z2009-02-12T13:48:46Z<p>I think WinMerge is great for diffing and merging files.</p>
<p>However, I would <em>definitely</em> recommend that you get yourself some kind of source control system. CVS, Subversion, Git, Mercurial, whatever!!! It doesn't really matter which you choose, just get one. You will almost immediately get return on that investment in time, and you will also learn about something that is crucial in all serious software development.</p>
http://stackoverflow.com/questions/540311/how-does-a-hash-table-work-is-it-faster-than-select-from/540333#5403330Answer by norheim.se for How does a hash table work? Is it faster than "SELECT * from .."norheim.se2009-02-12T07:01:25Z2009-02-12T07:52:33Z<p>Hash tables are great for locating entries at O(1) cost where the key (that is used for hashing) is already known. They are in widespread use both in collection libraries and in database engines. You should be able to find plenty of information about them on the internet. Why don't you start with <a href="http://en.wikipedia.org/wiki/Hash_table" rel="nofollow">Wikipedia</a> or just do a Google search?</p>
<p>I don't know the details of mysql. If there is a structure in there called "hash table", that would probably be a kind of table that uses hashing for locating the keys. I'm sure someone else will tell you about that. =)</p>
<p>EDIT: (in response to comment)</p>
<p>Ok. I'll try to make a grossly simplified explanation: A hash table is a table where the entries are located based on a function of the key. For instance, say that you want to store info about a set of persons. If you store it in a plain unsorted array, you would need to iterate over the elements in sequence in order to find the entry you are looking for. On average, this will need N/2 comparisons.</p>
<p>If, instead, you put all entries at indexes based on the first character of the persons first name. (A=0, B=1, C=2 etc), you will immediately be able to find the correct entry as long as you know the first name. This is the basic idea. You probably realize that some special handling (rehashing, or allowing lists of entries) is required in order to support multiple entries having the same first letter. If you have a well-dimensioned hash table, you should be able to get straight to the item you are searching for. This means approx one comparison, with the disclaimer of the special handling I just mentioned.</p>
http://stackoverflow.com/questions/540165/where-is-binary-search-used-in-practice/540192#5401927Answer by norheim.se for Where is binary search used in practice?norheim.se2009-02-12T05:38:23Z2009-02-12T05:38:23Z<p>Binary search <strong>is</strong> a good and fast way!</p>
<p>Before the arrival of STL and .NET framework, etc, you rather often could bump into situations where you needed to roll your own customized collection classes. Whenever a sorted array would be a feasible place of storing the data, binary search would be the way of locating entries in that array.</p>
<p>I'm quite sure binary search is in widespread use today as well, although it is taken care of "under the hood" by the library for your convenience.</p>
http://stackoverflow.com/questions/514794/best-way-to-solve-a-distance-problem/514972#5149721Answer by norheim.se for Best way to solve a distance problemnorheim.se2009-02-05T08:03:38Z2009-02-05T08:03:38Z<p>This is solved by finding the median. See <a href="http://en.wikipedia.org/wiki/Geometric_median" rel="nofollow">http://en.wikipedia.org/wiki/Geometric_median</a> ("Properties" section). It would be sufficient to perform the calculations on either the x or y coordinates. Either can be used as long as the coordinates along the selected axis are not constant for the line.</p>
http://stackoverflow.com/questions/505611/binary-deserialization-with-different-assembly-version/508827#5088274Answer by norheim.se for Binary Deserialization with different assembly versionnorheim.se2009-02-03T20:38:48Z2009-02-03T20:38:48Z<p>You can control how the binary formatter resolves its types by assigning a custom SerializationBinder to the formatter. In this way, you won't need to mess with the AppDomain's resolve events and you eliminate the risk of unexpected side effects from that.</p>
<p>There is a detailed example at <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.formatters.binary.binaryformatter.binder.aspx" rel="nofollow">MSDN</a>.</p>
http://stackoverflow.com/questions/377181/32-or-64-bit-dll-loading-from-net-managed-code/499190#4991903Answer by norheim.se for 32 or 64 bit DLL loading from .Net managed codenorheim.se2009-01-31T17:18:00Z2009-01-31T17:18:00Z<p>Unfortunately, I don't know anything about this particular DLL. However, when you do the P/Invoke yourself, and you can cope with a little duplication, it's possible to create one proxy for each platform.</p>
<p>For instance, suppose that you have the following interface, that should be implemented by either a 32 or 64 bit DLL:</p>
<pre><code>public interface ICodec {
int Decode(IntPtr input, IntPtr output, long inputLength);
}
</code></pre>
<p>You create the proxies:</p>
<pre><code>public class CodecX86 : ICodec {
private const string dllFileName = @"Codec.x86.dll";
[DllImport(dllFileName)]
static extern int decode(IntPtr input, IntPtr output, long inputLength);
public int Decode(IntPtr input, IntPtr output, long inputLength) {
return decode(input, output, inputLength);
}
}
</code></pre>
<p>and</p>
<pre><code>public class CodecX64 : ICodec {
private const string dllFileName = @"Codec.x64.dll";
[DllImport(dllFileName)]
static extern int decode(IntPtr input, IntPtr output, long inputLength);
public int Decode(IntPtr input, IntPtr output, long inputLength) {
return decode(input, output, inputLength);
}
}
</code></pre>
<p>And finally make a factory that picks the right one for you:</p>
<pre><code>public class CodecFactory {
ICodec instance = null;
public ICodec GetCodec() {
if (instance == null) {
if (IntPtr.Size == 4) {
instance = new CodecX86();
} else if (IntPtr.Size == 8) {
instance = new CodecX64();
} else {
throw new NotSupportedException("Unknown platform");
}
}
return instance;
}
}
</code></pre>
<p>As the DLLs are loaded lazily the first time they are being invoked, this actually works, despite each platform only being able to load the version that is native to it. See <a href="http://norheim.wordpress.com/2009/01/29/dual-platform-pinvoke/" rel="nofollow">this article</a> for a more detailed explanation.</p>
http://stackoverflow.com/questions/435050/how-to-determine-installed-iis-version1How to determine installed IIS versionnorheim.se2009-01-12T10:38:46Z2009-01-13T07:52:16Z
<p>What would the preferred way of programmatically determining which the currently installed version of Microsoft Internet Information Services (IIS) is?</p>
<p>I know that it can be found by looking at the MajorVersion key in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters. </p>
<p>Would this be the <em>recommended</em> way of doing it, or is there any safer or more beautiful method available to a .NET developer?</p>
http://stackoverflow.com/questions/426173/what-is-the-algorithm-to-determine-the-best-way-to-distribute-these-coupons/426233#4262333Answer by norheim.se for What is the algorithm to determine the best way to distribute these coupons?norheim.se2009-01-08T22:15:11Z2009-01-08T22:28:01Z<p>I think <a href="http://en.wikipedia.org/wiki/Dynamic_programming" rel="nofollow">dynamic programming</a> should do this. Basically, you keep track of an array A[n, c] whose values mean the optimal discount while buying the n first items having spent c coupons. The values for a[n, 0] should be 0 for all values of n, so that is a good start. Also, A[0, c] is 0 for all c.</p>
<p>When you evaluate A[n,c], you loop over all discount offers for item n, and add the discount for that particular offer to A[n-1,c-p] where p is the price in coupons for this particular discount. A[n-1, c-p] must of course be calculated (in the same way) prior to this. Keep the best combination and store in the array.</p>
<p>A recursive implementation would probably give the cleanest implementation. In that case, you should find the answer in A[N,C] where N is the total number of items and C is the total number of available coupons.</p>
http://stackoverflow.com/questions/425833/coders-block-what-is-a-good-way-to-find-ideas-for-projects/425903#4259031Answer by norheim.se for Coders-Block... What is a good way to find ideas for projects?norheim.se2009-01-08T20:56:16Z2009-01-08T20:56:16Z<p>If you work at a software development company - go visit the customers that actually use your product. Apart from telling you all the features they want in your product, they surprisingly often also have great ideas on functionality that easily could constitute products of its own right. (Of course, if the idea infringes on the business area of your employer, you might need to have a discussion with your boss before investing too much work into it...)</p>
http://stackoverflow.com/questions/425837/how-do-you-motivate-peers-to-become-better-developers/425877#4258778Answer by norheim.se for How do you motivate peers to become better developers?norheim.se2009-01-08T20:50:57Z2009-01-08T20:50:57Z<p>I think peer-reviewing is a great way of both increasing the quality of the code and sharing knowledge.</p>
<p>Of course this must be part of the development process. When it is, you very often learn new things every time you get someone else's (constructive) opinions on what you have just created. And I hope that applies also to less motivated peers...</p>
http://stackoverflow.com/questions/411118/programmatic-graphics-toolchain/411126#4111263Answer by norheim.se for Programmatic graphics toolchainnorheim.se2009-01-04T15:15:36Z2009-01-04T15:15:36Z<p>Even though I'm not 100% sure if it fulfills your request for user-orientation, I recommend you to have a look at <a href="http://www.imagemagick.org" rel="nofollow" title="ImageMagick">www.imagemagick.org</a>. I have successfully used its "convert" utility for scripting conversion from svg to png and also for adding custom background colors.</p>
http://stackoverflow.com/questions/411019/how-do-you-get-yourself-back-out-of-the-zone-when-the-work-day-is-over/411023#41102331Answer by norheim.se for How do you get yourself back "out of the zone" when the work day is over?norheim.se2009-01-04T14:13:25Z2009-01-04T14:13:25Z<p>Physical exercise!</p>
http://stackoverflow.com/questions/410787/avoiding-array-duplication/410818#4108180Answer by norheim.se for Avoiding array duplicationnorheim.se2009-01-04T10:47:35Z2009-01-04T10:47:35Z<p>It will not make copies of the array unless you make it do so. However, simply passing the reference to an array privately owned by an object has some nasty side-effects. Whoever receives the reference is basically free to do whatever he likes with the array, including altering the contents in ways that cannot be controlled by its owner.</p>
<p>One way of preventing unauthorized meddling with the array is to return a copy of the contents. Another (slightly better) is to return a read-only collection.</p>
<p>Still, before doing any of these things you should ask yourself if you are about to give away too much information. In some cases (actually, quite often) it is even better to keep the array private and instead let provide methods that operate on the object owning it.</p>
http://stackoverflow.com/questions/406791/having-issues-with-binary-search-trees-in-c/409120#4091201Answer by norheim.se for Having issues with Binary Search Trees in C#norheim.se2009-01-03T14:41:02Z2009-01-03T14:41:02Z<p>I get quite the opposite result from your code - 6 nodes and 3 leaves. 6 nodes is the number of items you have inserted into the tree, so this makes sense. The number of leaves should be the number of nodes in the tree having no children. As your tree currently looks like this...</p>
<pre><code> 10
/ \
5 17
/ \
2 6
\
3
</code></pre>
<p>...you have six nodes and three leaves (17,6 and 3).</p>
http://stackoverflow.com/questions/1561829/alternatives-to-vmbed-for-rental-of-virtual-xp-machinesComment by norheim.se on Alternatives to VMBed for rental of virtual XP machines?norheim.se2009-10-13T18:05:55Z2009-10-13T18:05:55ZIs this some sort of advertisement?http://stackoverflow.com/questions/1517172/number-of-comparisons-using-merge-sort/1517204#1517204Comment by norheim.se on Number of Comparisons using merge sort.norheim.se2009-10-05T06:25:43Z2009-10-05T06:25:43ZActually, the mistake I made was assuming that lg referred to the natural logarithm. ln(5)=1.609... But of course the base 2 logarithm makes more sense in this context.http://stackoverflow.com/questions/1517172/number-of-comparisons-using-merge-sort/1517204#1517204Comment by norheim.se on Number of Comparisons using merge sort.norheim.se2009-10-04T20:39:33Z2009-10-04T20:39:33ZAs ⌈lg 5⌉ is 2, the answer is 5*2-2^2+1 = 7. This makes sense if you follow the algorithm as described in the article. If the initial sequence is 2,4,1,3,5, the comparisons will be, in order of appearance: (2,4) (2,1) (3,5) (1,3) (2,3) (4,3) (4,5)http://stackoverflow.com/questions/1511585/algorithm-optimization-shortest-route-between-multiple-points/1511616#1511616Comment by norheim.se on Algorithm Optimization - Shortest Route Between Multiple Pointsnorheim.se2009-10-02T21:02:25Z2009-10-02T21:02:25Z@Juliet you are right. I've changed my answer.http://stackoverflow.com/questions/1402696/how-deterministic-are-net-guids/1402767#1402767Comment by norheim.se on How deterministic Are .Net GUIDs ?norheim.se2009-10-01T17:50:31Z2009-10-01T17:50:31Z@FacticiusVir The number of lines between N stars will be N*(N-1)/2, as you say. However, this is unfortunately not equal to (N-1)! = (N-1)*(N-2)*(N-3)*(N-4)*...http://stackoverflow.com/questions/1497539/fitting-a-density-curve-to-a-histogram-in-rComment by norheim.se on Fitting a density curve to a histogram in Rnorheim.se2009-09-30T11:38:37Z2009-09-30T11:38:37ZDo you want to find m and s such that the Gaussian distribution N(m,s) fits to your data?http://stackoverflow.com/questions/1458314/number-of-1s-in-32-bit-number/1458330#1458330Comment by norheim.se on number of 1's in 32 bit numbernorheim.se2009-09-22T06:47:28Z2009-09-22T06:47:28ZSorry. The question resembled a homework problem to me and I wanted to provide a different view. For any performance critical as well as most non-theoretical applications, go for the bit-twiddling solutions!http://stackoverflow.com/questions/1450784/c-programmingComment by norheim.se on C++ programmingnorheim.se2009-09-20T11:03:54Z2009-09-20T11:03:54ZWhat is your question?http://stackoverflow.com/questions/561227/byte-width-of-a-value-type/561258#561258Comment by norheim.se on Byte width of a value typenorheim.se2009-02-18T15:05:50Z2009-02-18T15:05:50ZIf you are doing unmanaged programming anyway (which you seem to be doing), it would probably be easiest to lock the struct, get the pointer to it, and simply fill it byte by byte. Just make sure that your struct doesn't contain any reference types, or types that contain reference types etc...http://stackoverflow.com/questions/561265/recursive-assembly-call-though-no-recursion-in-source-codeComment by norheim.se on Recursive assembly Call though no recursion in source codenorheim.se2009-02-18T14:32:13Z2009-02-18T14:32:13ZWhy don't you post the original function along with the disassembly of the binary you get from compilation? Currently, it's too little information to make sense to me.http://stackoverflow.com/questions/505611/binary-deserialization-with-different-assembly-version/508827#508827Comment by norheim.se on Binary Deserialization with different assembly versionnorheim.se2009-02-05T06:27:47Z2009-02-05T06:27:47Z@mmr: I just tested it and got it working. Start out with the MSDN example in the answer, and modify the serialization binder to allow some assembly version mismatch.http://stackoverflow.com/questions/502905/c-int-to-enum-conversion/502910#502910Comment by norheim.se on C# int to enum conversionnorheim.se2009-02-02T11:47:04Z2009-02-02T11:47:04Zdittodhole: If value is not defined, it will still silently accept the value. I have no idea why they chose to design it this way.http://stackoverflow.com/questions/434657/java-double-value-comparison/434669#434669Comment by norheim.se on Java: Double Value Comparisonnorheim.se2009-01-12T07:30:34Z2009-01-12T07:30:34ZThis is not completely true. There are definitely more operations that can cause the value to not be exact when using floating point calculations. For instance 0.3-0.2-0.1 will not evaluate to exactly 0, but rather to -0.000000000000000027755575615628914 which in turn is != 0http://stackoverflow.com/questions/429165/raising-a-decimal-to-a-power-of-decimalComment by norheim.se on Raising a decimal to a power of decimal ?norheim.se2009-01-09T19:44:15Z2009-01-09T19:44:15ZHow large error would be acceptable? As a^b for most values of b give an irrational number, there is no way to exactly represent it anyways.http://stackoverflow.com/questions/429165/raising-a-decimal-to-a-power-of-decimal/429231#429231Comment by norheim.se on Raising a decimal to a power of decimal ?norheim.se2009-01-09T19:39:59Z2009-01-09T19:39:59ZIn what way would you say this solution is better than just using the framework's Math.Pow function? Both take doubles as input and return doubles. Neither handles System.Decimal.