User Lasse V. Karlsen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:08:16Zhttp://stackoverflow.com/feeds/user/267http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/882160/subversion-repository-statistics-other-than-statsvn4Subversion repository statistics, other than StatSVN?Lasse V. Karlsen2009-05-19T11:23:08Z2009-12-22T04:40:33Z
<p>Are there other open source/free packages for producing repository statistics for a Subversion repository?</p>
<p>I've tried StatSVN but it seems to be incompatible with the logfiles for Subversion 1.5 and above.</p>
<p>Note, I know that TortoiseSVN has some statistics built into its dialogs and repository browsing code, but this is not what I'm looking for.</p>
<p>What I'm looking for is a tool that can analyze the repository, and its logs, and produce statistics like these:</p>
<ul>
<li>Who checked in the most code</li>
<li>Code growth over time</li>
<li>Busy files (changed often)</li>
</ul>
http://stackoverflow.com/questions/1939747/making-threads-work-in-parallel-in-c/1939758#19397583Answer by Lasse V. Karlsen for Making Threads work in parallel in c#Lasse V. Karlsen2009-12-21T12:08:35Z2009-12-21T12:08:35Z<p>No, make each thread use its own connection.</p>
http://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-33Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-20T19:48:43Z2009-12-21T06:16:32Z
<p>I have the following two generic types:</p>
<pre><code>interface IRange<T> where T : IComparable<T>
interface IRange<T, TData> : IRange<T> where T : IComparable<T>
^---------^
|
+- note: inherits from IRange<T>
</code></pre>
<p>Now I want to define an extension methods for collections of these interfaces, and since they're both either <code>IRange<T></code> or descends from <code>IRange<T></code> I was hoping I could define one method that would handle both. Note that the method will not need to deal with any of the differences between the two, only the common part from <code>IRange<T></code>.</p>
<p>My question is thus this:</p>
<p><strong>Can I define one extension method that will handle collections (<code>IEnumerable<T></code>) of either of these two types?</strong></p>
<p>I tried this:</p>
<pre><code>public static void Slice<T>(this IEnumerable<IRange<T>> ranges)
where T : IComparable<T>
</code></pre>
<p>however, passing an <code>IEnumerable<IRange<Int32, String>></code>, like this:</p>
<pre><code>IEnumerable<IRange<Int32, String>> input = new IRange<Int32, String>[0];
input.Slice();
</code></pre>
<p>gives me this compiler error:</p>
<blockquote>
<p>Error 1 'System.Collections.Generic.IEnumerable>' does not contain a definition for 'Slice' and no extension method 'Slice' accepting a first argument of type 'System.Collections.Generic.IEnumerable>' could be found (are you missing a using directive or an assembly reference?) C:\Dev\VS.NET\LVK\LVK.UnitTests\Core\Collections\RangeTests.cs 455 26 LVK.UnitTests</p>
</blockquote>
<p><strong>Note</strong>: I did not expect it to compile. I know enough about co(ntra)-variance (some day I need to learn which one is which way) to know that won't work. My question is if there's anything I can do to the Slice declaration to make it work.</p>
<p>Ok, so then I tried to infer the type of the range interface, so that I could handle all types of <code>IEnumerable<R></code> as long as the <code>R</code> in question was a <code>IRange<T></code>.</p>
<p>So I tried this:</p>
<pre><code>public static Boolean Slice<R, T>(this IEnumerable<R> ranges)
where R : IRange<T>
where T : IComparable<T>
</code></pre>
<p>This gives me the same problem.</p>
<p>So, is there a way to tweak this?</p>
<p>If not, are my only options to:</p>
<ol>
<li>Define two extension methods, and call an internal method internally, perhaps by converting one of the collections to one that contains the base interface?</li>
<li>Wait for C# 4.0?</li>
</ol>
<p><hr></p>
<p>Here's how I envision defining the two methods (note, I'm still in the early design phases of this, so this might not work at all):</p>
<pre><code>public static void Slice<T>(this IEnumerable<IRange<T>> ranges)
where T : IComparable<T>
{
InternalSlice<T, IRange<T>>(ranges);
}
public static void Slice<T, TData>(this IEnumerable<IRange<T, TData>> ranges)
where T : IComparable<T>
{
InternalSlice<T, IRange<T, TData>>(ranges);
}
private static void Slice<T, R>(this IEnumerable<R> ranges)
where R : IRange<T>
where T : IComparable<T>
</code></pre>
<p><hr></p>
<p>Here's a sample program code that shows my problem.</p>
<p>Note that by changing the calls from Slice1 to Slice2 in the Main method makes both usages produce compiler errors, so my second attempt didn't even handle my initial case.</p>
<pre><code>using System;
using System.Collections.Generic;
namespace SO1936785
{
interface IRange<T> where T : IComparable<T> { }
interface IRange<T, TData> : IRange<T> where T : IComparable<T> { }
static class Extensions
{
public static void Slice1<T>(this IEnumerable<IRange<T>> ranges)
where T : IComparable<T>
{
}
public static void Slice2<R, T>(this IEnumerable<R> ranges)
where R : IRange<T>
where T : IComparable<T>
{
}
}
class Program
{
static void Main(string[] args)
{
IEnumerable<IRange<Int32>> a = new IRange<Int32>[0];
a.Slice1();
IEnumerable<IRange<Int32, String>> b = new IRange<Int32, String>[0];
b.Slice1(); // doesn't compile, and Slice2 doesn't handle either
}
}
}
</code></pre>
http://stackoverflow.com/questions/1937738/use-attributes-to-check-whether-to-access-a-method/1937786#19377861Answer by Lasse V. Karlsen for Use Attributes To Check Whether to Access a MethodLasse V. Karlsen2009-12-21T01:43:26Z2009-12-21T01:43:26Z<p>Unfortunately, attributes doesn't get executed at runtime. A handful of built-in attributes modify the code that gets compiled, like the MethodImpl attributes and similar, but all custom attributes are just metadata. If no code goes looking for the metadata, it will sit there and not impact the execution of your program at all.</p>
<p>In other words, you need that if-statement <em>somewhere</em>.</p>
<p>Unless you can use a tool like <a href="http://www.postsharp.org" rel="nofollow">PostSharp</a>, then you cannot get this done in out-of-the box .NET, without explicit checks for the attributes.</p>
http://stackoverflow.com/questions/145607/text-difference-algorithm/1937776#19377760Answer by Lasse V. Karlsen for Text difference algorithmLasse V. Karlsen2009-12-21T01:39:30Z2009-12-21T01:39:30Z<p>One method I've employed for a different functionality, to calculate how much data was new in a modified file, could perhaps work for you as well.</p>
<p>I have a diff/patch implementation C# that allows me to take two files, presumably old and new version of the same file, and calculate the "difference", but not in the usual sense of the word. Basically I calculate a set of operations that I can perform on the old version to update it to have the same contents as the new version.</p>
<p>To use this for the functionality initially described, to see how much data was new, I simple ran through the operations, and for every operation that copied from the old file verbatim, that had a 0-factor, and every operation that inserted new text (distributed as part of the patch, since it didn't occur in the old file) had a 1-factor. All characters was given this factory, which gave me basically a long list of 0's and 1's.</p>
<p>All I then had to do was to tally up the 0's and 1's. In your case, with my implementation, a low number of 1's compared to 0's would mean the files are very similar.</p>
<p>This implementation would also handle cases where the modified file had inserted copies from the old file out of order, or even duplicates (ie. you copy a part from the start of the file and paste it near the bottom), since they would both be copies of the same original part from the old file.</p>
<p>I experimented with weighing copies, so that the first copy counted as 0, and subsequent copies of the same characters had progressively higher factors, in order to give a copy/paste operation some "new-factor", but I never finished it as the project was scrapped.</p>
<p>If you're interested, my diff/patch code is available from my Subversion repository.</p>
http://stackoverflow.com/questions/1936919/what-is-a-good-example-to-show-to-a-non-programmer-to-explain-what-programming-l/1937224#19372244Answer by Lasse V. Karlsen for What is a good example to show to a non-programmer to explain what programming "looks like"?Lasse V. Karlsen2009-12-20T22:02:04Z2009-12-20T22:02:04Z<p>I've found that the best approach to "teach someone what programming is without teaching them programming" is actually to just drop anything related to a specific programming language.</p>
<p>Instead (assuming they're actually interested), I would talk them through implementing a function in a program, like a simple bank loan application (most people have had to deal with loans at some stage, if they're above a certain age), and then poking holes in all the assumptions.</p>
<p>Like, what should happen if the user types in a negative loan amount? What if the user cannot afford the loan? How would the loan application know that? How would the loan application know which bank account to check and which payment history to check (ie. who is the user actually)? What if the user tries to type in his name in the loan amount field? What if the user tries to take the loan over 75 years? Should we limit the choices to a list of available lengths?</p>
<p>And then in the end: Programming is taking all of those rules, and writing them in a language that the computer understands, so that it follows those rules to the letter. At this point, if it is felt necessary, I would pull out some simple code so that the overall language can be looked at, and then perhaps written out one of the rules in that language.</p>
<p>Bonus points if you can get your friend to then react with: But what if we forgot something? Well, then we have bugs, and now you know why no software program is bugfree too :)</p>
http://stackoverflow.com/questions/1934308/strategy-for-handling-parameter-validation-in-class-library0Strategy for handling parameter validation in class libraryLasse V. Karlsen2009-12-19T22:30:29Z2009-12-19T22:40:41Z
<p>I got a rather big class library that contains a lot of code.</p>
<p>I am looking at how to optimize the performance of some of the code, and for some rather simple utility methods I've found that the parameter validation occupies a rather large portion of the runtime for some core methods.</p>
<p>Let me give a typical example:</p>
<ol>
<li>A.MethodA1 runs a loop, iterating over a collection, calling B.MethodB1 for each element</li>
<li>B.MethodB1 processes the element and returns the result, it's a rather basic calculation, but since it is used many places, it has been put into its own method instead of being copied and pasted where needed</li>
<li>A.MethodA1 calls C.MethodC1 with the results of B.MethodB1, and puts the result into a list that is returned at the end of the loop</li>
</ol>
<p>In the case I've found now, B.MethodB1 does rudimentary parameter validation. Since the method calls other internal methods, I'd like to avoid having NullReferenceExceptions several layers deep into the code, and rather fail early, hence B.MethodB1 validates the parameters, like checking for null and some basic range checks on another parameter.</p>
<p>However, in this particular call scenario, it is impossible (due to other program logic) for these parameters to ever have the wrong values. If they had, from the program standpoint, B.MethodB1 would never be called at all for those values, A.MethodA1 would fail before the call to B.MethodB1.</p>
<p>So I was considering removing the parameter validation in B.MethodB1, since it occupies roughly 65% of the method runtime (and this is part of some heavily used code.)</p>
<p>However, B.MethodB1 is a public method, and can thus be called from the program, in which case I <em>want</em> the parameter validation.</p>
<p>So how would you solve this dilemma?</p>
<ol>
<li>Keep the parameter validation, and take the performance hit</li>
<li>Remove the parameter validation, and have potentially fail-late problems in the method</li>
<li>Split the method into two, one internal that doesn't have parameter validation, called by the "safe" path, and one public that has the parameter validation + a call to the internal version.</li>
</ol>
<p>The latter one would give me the benefits of having no parameter validation, while still exposing a public entrypoint which does have parameter validation, but for some reason it doesn't sit right with me.</p>
<p>Opinions?</p>
http://stackoverflow.com/questions/1931359/how-to-reduce-calculation-of-average-to-sub-sets-in-a-general-way3How to reduce calculation of average to sub-sets in a general way?Lasse V. Karlsen2009-12-18T23:54:17Z2009-12-19T17:31:40Z
<p><strong>Edit:</strong> Since it appears nobody is reading the original question this links to, let me bring in a synopsis of it here.</p>
<p>The original problem, as asked by someone else, was that, given a large number of values, where the sum would exceed what a data type of <code>Double</code> would hold, how can one calculate the average of those values.</p>
<p>There was several answers that said to calculate in sets, like taking 50 and 50 numbers, and calculating the average inside those sets, and then finally take the average of all those sets and combine those to get the final average value.</p>
<p>My position was that unless you can guarantee that all those values can be split into a number of <strong>equally sized sets</strong>, you cannot use this approach. Someone dared me to ask the question here, in order to provide the answer, so here it is.</p>
<p>Basically, given an arbitrary number of values, where:</p>
<ul>
<li>I know the number of values beforehand (but again, how would your answer change if you didn't?`)</li>
<li>I cannot gather up all the numbers, nor can I sum them (the sum will be too big for a normal data type in your programming language)</li>
</ul>
<p>how can I calculate the average?</p>
<p>The rest of the question here outlines how, and the problems with, the approach to split into equally sized sets, but I'd really just like to know how you can do it.</p>
<p>Note that I know perfectly well enough math to know that in math theory terms, calculating the sum of <code>A[1..N]/N</code> will give me the average, let's assume that there are reasons that it isn't just as simple, and I need to split up the workload, and that the number of values isn't necessarily going to be divisable by 3, 7, 50, 1000 or whatever.</p>
<p>In other words, the solution I'm after will have to be general.</p>
<p><hr></p>
<p>From this question:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex">What is a good solution for calculating an average where the sum of all values exceeds a double’s limits?</a></li>
</ul>
<p>my position was that splitting the workload up into sets is no good, unless you can ensure that the size of those sets are equal.</p>
<p><hr></p>
<p><strong>Edit</strong>: The original question was about the upper limit that a particular data type could hold, and since he was summing up a lot of numbers (count that was given as example was 10^9), the data type could not hold the sum. Since this was a problem in the original solution, I'm assuming (and this is a prerequisite for my question, sorry for missing that) that the numbers are too big to give any meaningful answers.</p>
<p>So, dividing by the total number of values directly is out. The original reason for why a normal SUM/COUNT solution was out was that SUM would overflow, but let's assume, for this question that SET-SET/SET-SIZE will underflow, or whatever.</p>
<p><strong>The important part is that I cannot simply sum, I cannot simply divide by the number of total values. If I cannot do that, will my approach work, or not, and what can I do to fix it?</strong></p>
<p><hr></p>
<p>Let me outline the problem.</p>
<p>Let's assume you're going to calculate the average of the numbers 1 through 6, but you cannot (for whatever reason) do so by summing the numbers, counting the numbers, and then dividing the sum by the count. In other words, you cannot simply do (1+2+3+4+5+6)/6.</p>
<p>In other words, <code>SUM(1..6)/COUNT(1..6)</code> is out. We're not considering NULL's (as in database NULL's) here.</p>
<p>Several of the answers to that question alluded to being able to split the numbers being averaged into sets, say 3 or 50 or 1000 numbers, then calculating some number for that, and then finally combining those values to get the final average.</p>
<p>My position is that this is not possible in the general case, since this will make some numbers, the ones appearing in the final set, more or less valuable than all the ones in the previous sets, unless you can split all the numbers into equally sized sets.</p>
<p>For instance, to calculate the average of 1-6, you can split it up into sets of 3 numbers like this:</p>
<pre><code>/ 1 2 3 \ / 4 5 6 \
| - + - + - | + | - + - + - |
\ 3 3 3 / \ 3 3 3 / <-- 3 because 3 numbers in the set
---------- -----------
2 2 <-- 2 because 2 equally sized groups
</code></pre>
<p>Which gives you this:</p>
<pre><code> 2 5
- + - = 3.5
2 2
</code></pre>
<p>(note: (1+2+3+4+5+6)/6 = 3.5, so this is correct here)</p>
<p>However, my point is that once the number of values cannot be split into a number of equally sized sets, this method falls apart. For instance, what about the sequence 1-7, which contains a prime number of values.</p>
<p>Can a similar approach, that won't sum <em>all</em> the values, and count <em>all</em> the values, in one go, work?</p>
<p>So, is there such an approach? How do I calculate the average of an arbitrary number of values in which the following holds true:</p>
<ol>
<li>I cannot do a normal sum/count approach, for whatever reason</li>
<li>I know the number of values beforehand (what if I don't, will that change the answer?)</li>
</ol>
http://stackoverflow.com/questions/1931345/want-to-use-if-then-in-sql/1931379#19313790Answer by Lasse V. Karlsen for Want to use IF THEN in SQLLasse V. Karlsen2009-12-19T00:02:23Z2009-12-19T00:02:23Z<p>Are you saying you want something that amounts to something like this?</p>
<pre><code>UPDATE Company
SET active = 1
WHERE CompanyID IN (
SELECT
Client_CompanyID
FROM
Contacts -- or do you mean clients?
WHERE
IsActive = 1
)
</code></pre>
<p>?</p>
<p>If not, pleas let us know what, other than that, you want.</p>
<p>And please, oh please, don't say "and this has to work in MySQL 3.x or 4.x."</p>
http://stackoverflow.com/questions/1922464/can-i-detect-whether-ive-been-given-a-new-object-as-a-parameter/1931326#19313260Answer by Lasse V. Karlsen for Can I detect whether I've been given a new object as a parameter?Lasse V. Karlsen2009-12-18T23:42:42Z2009-12-18T23:42:42Z<p>Let me rewrite your question to something shorter.</p>
<blockquote>
<p>Is there any way, in my method, which takes an object as an argument, to know if this object will ever be used outside of my method?</p>
</blockquote>
<p>And the short answer to that is: <strong>No.</strong></p>
<p>Let me venture an opinion at this point: There should not be any such mechanism either.</p>
<p>This would complicate method calls all over the place.</p>
<p>If there was a method where I could, in a method call, tell if the object I'm given would really be used or not, then it's a signal to me, as a developer of that method, to take that into account.</p>
<p>Basically, you'd see this type of code all over the place (hypothetical, since it isn't available/supported:)</p>
<pre><code>if (ReferenceCount(obj) == 1) return; // only reference is the one we have
</code></pre>
<p>My opinion is this: If the code that <em>calls</em> your method isn't going to use the object for anything, and there are no side-effects outside of modifying the object, then that code should not exist to begin with.</p>
<p>It's like code that looks like this:</p>
<pre><code>1 + 2;
</code></pre>
<p>What does this code do? Well, depending on the C/C++ compiler, it <em>might</em> compile into something that evaluates 1+2. But then what, where is the result stored? Do you use it for anything? No? Then why is that code part of your source code to begin with?</p>
<p>Of course, you could argue that the code is actually <code>a+b;</code>, and the purpose is to ensure that the evaluation of <code>a+b</code> isn't going to throw an exception denoting overflow, but such a case is so diminishingly rare that a special case for it would just mask real problems, and it would be <em>really</em> simple to fix by just assigning it to a temporary variable.</p>
<p>In any case, for any feature in any programming language and/or runtime and/or environment, where a feature isn't available, the reasons for why it isn't available are:</p>
<ul>
<li>It wasn't designed properly</li>
<li>It wasn't specified properly</li>
<li>It wasn't implemented properly</li>
<li>It wasn't tested properly</li>
<li>It wasn't documented properly</li>
<li>It wasn't prioritized above competing features</li>
</ul>
<p>All of these are required to get a feature to appear in version X of application Y, be it C# 4.0 or MS Works 7.0.</p>
http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931156#19311560Answer by Lasse V. Karlsen for Is it good practice to NULL a pointer after deleting it?Lasse V. Karlsen2009-12-18T22:57:19Z2009-12-18T22:57:19Z<p>Let me expand what you've already put into your question.</p>
<p>Here's what you've put into your question, in bullet-point form:</p>
<p><hr></p>
<p>Setting pointers to NULL following delete is not universal good practice in C++. There are times when:</p>
<ul>
<li>it is a good thing to do</li>
<li>and times when it is pointless and can hide errors.</li>
</ul>
<p><hr></p>
<p>However, there is <em>no times</em> when this is <em>bad</em>! You will <em>not</em> introduce more bugs by explicitly nulling it, you will not <em>leak</em> memory, you will not <em>cause undefined behaviour</em> to happen.</p>
<p>So, if in doubt, just null it.</p>
<p>Having said that, if you feel that you have to explicitly null some pointer, then to me this sounds like you haven't split up a method enough, and should look at the refactoring approach called "Extract method" to split up the method into separate parts.</p>
http://stackoverflow.com/questions/1931015/looking-for-ideas-on-storage-of-data-on-local-disk/1931110#19311102Answer by Lasse V. Karlsen for Looking for ideas on storage of data on local diskLasse V. Karlsen2009-12-18T22:43:19Z2009-12-18T22:43:19Z<p>If it can <em>never</em> change, why aren't you just providing it with the application installation in the first place?</p>
<p>Are you confused about what the terms "will never change" actually means?</p>
<p>As for local storage solutions, there's plenty to choose from, like <a href="http://sqlite.phxsoftware.com/" rel="nofollow">SQLite</a> which would let you use a database-solution, even if locally, without any installation hassle.</p>
http://stackoverflow.com/questions/1930793/is-there-a-way-to-get-vs2008-to-stop-warning-me-about-unreachable-code/1930840#193084015Answer by Lasse V. Karlsen for Is there a way to get VS2008 to stop warning me about unreachable code?Lasse V. Karlsen2009-12-18T21:38:47Z2009-12-18T22:28:29Z<p>First of all, I agree with you, you need to get rid of all warnings. Every little warning you get, get rid of it, by fixing the problem.</p>
<p>Before I go on with what, on re-read, amounts to what looks like a rant, let me emphasis that there doesn't appear to be any performance penalty to using code like this. Having used <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to examine code, it appears code that is "flagged" as unreachable isn't actually placed into the output assembly.</p>
<p>It is, <em>however</em>, checked by the compiler. This alone might be a good enough reason to disregard my rant.</p>
<p>In other words, the net effect of getting rid of that warning is just that, <em>you get rid of the warning.</em></p>
<p>Also note that this answer is an <em>opinion</em>. You might not agree with my opinion, and want to use <code>#pragma</code> to mask out the warning message, but at least have an informed opinion about what that does. If you do, who cares what I think.</p>
<p>Having said that, why are you writing code that won't be reached?</p>
<p>Are you using consts instead of "defines"?</p>
<p>A warning is not an error. It's a note, for you, to go analyze that piece of code and figure out if you did the right thing. Usually, you haven't. In the case of your particular example, you're purposely compiling code that will, for your particular configuration, never execute.</p>
<p>Why is the code even there? It will <strong>never</strong> execute.</p>
<p>Are you confused about what the word "constant" actually means? A constant means "this will never change, ever, and if you think it will, it's not a constant". That's what a constant is. It won't, and can't, and shouldn't, change. Ever.</p>
<p>The compiler knows this, and will tell you that you have code, that due to a constant, will never, ever, be executed. This is usually an error.</p>
<p>Is that constant going to change? If it is, it's obviously not a constant, but something that depends on the output type (Debug, Release), and it's a "#define" type of thing, so remove it, and use that mechanism instead. This makes it clearer, to people reading your code, what this particular code depends on. Visual Studio will also helpfully gray out the code if you've selected an output mode that doesn't set the define, so the code will not compile. This is what the compiler definitions was made to handle.</p>
<p>On the other hand, if the constant isn't going to change, ever, for any reason, remove the code, you're not going to need it.</p>
<p>In any case, don't fall prey to the easy fix to just disable that warning for that piece of code, that's like taking aspirin to "fix" your back ache problems. It's a short-term fix, but it masks the problem. Fix the underlying problem instead.</p>
<p>To finish this answer, I'm wondering if there isn't an altogether different solution to your problem.</p>
<p>Often, when I see code that has the warning "unreachable code detected", they fall into one of the following categories:</p>
<ol>
<li>Wrong (in my opinion) usage of <code>const</code> versus a compiler <code>#define</code>, where you basically say to the compiler: "This code, please compile it, <em>even when I know it will not be used</em>.".</li>
<li>Wrong, as in, just plain wrong, like a switch-case which has a case-block that contains both a throw + a break.</li>
<li>Leftover code from previous iterations, where you've just short-circuited a method by adding a return at some point, not deleting (or even commenting out) the code that follows.</li>
<li>Code that depends on some configuration setting (ie. only valid during Debug-builds).</li>
</ol>
<p>If the code you have doesn't fall under any of the above settings, <em>what is the specific case where your constant will change</em>? Knowing that might give us better ways to answer your question on how to handle it.</p>
http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex/1930714#19307145Answer by Lasse V. Karlsen for What is a good solution for calculating an average where the sum of all values exceeds a double's limits?Lasse V. Karlsen2009-12-18T21:13:04Z2009-12-18T21:27:14Z<p>The very first issue I'd like to ask you is this:</p>
<ul>
<li>Do you know the number of values beforehand?</li>
</ul>
<p>If not, then you have little choice but to sum, and count, and divide, to do the average. If <code>Double</code> isn't high enough precision to handle this, then tough luck, you can't use <code>Double</code>, you need to find a data type that can handle it.</p>
<p>If, on the other hand, you <em>do</em> know the number of values beforehand, you can look at what you're really doing and change <em>how</em> you do it, but keep the overall result.</p>
<p>The average of N values, stored in some collection A, is this:</p>
<pre><code>A[0] A[1] A[2] A[3] A[N-1] A[N]
---- + ---- + ---- + ---- + .... + ------ + ----
N N N N N N
</code></pre>
<p>To calculate subsets of this result, you can split up the calculation into equally sized sets, so you can do this, for 3-valued sets (assuming the number of values is divisable by 3, otherwise you need a different divisor)</p>
<pre><code>/ A[0] A[1] A[2] \ / A[3] A[4] A[5] \ // A[N-1] A[N] \
| ---- + ---- + ---- | | ---- + ---- + ---- | \\ + ------ + ---- |
\ 3 3 3 / \ 3 3 3 / // 3 3 /
--------------------- + -------------------- + \\ --------------
N N N
--- --- ---
3 3 3
</code></pre>
<p>Note that you need <strong>equally sized sets</strong>, otherwise numbers in the last set, which will not have enough values compared to all the sets before it, will have a higher impact on the final result.</p>
<p>Consider the numbers 1-7 in sequence, if you pick a set-size of 3, you'll get this result:</p>
<pre><code>/ 1 2 3 \ / 4 5 6 \ / 7 \
| - + - + - | + | - + - + - | + | - |
\ 3 3 3 / \ 3 3 3 / \ 3 /
----------- ----------- ---
y y y
</code></pre>
<p>which gives:</p>
<pre><code> 2 5 7/3
- + - + ---
y y y
</code></pre>
<p>If y is 3 for all the sets, you get this:</p>
<pre><code> 2 5 7/3
- + - + ---
3 3 3
</code></pre>
<p>which gives:</p>
<pre><code>2*3 5*3 7
--- + --- + ---
9 9 9
</code></pre>
<p>which is:</p>
<pre><code>6 15 7
- + -- + -
9 9 9
</code></pre>
<p>which totals:</p>
<pre><code>28
-- ~ 3,1111111111111111111111.........1111111.........
9
</code></pre>
<p>The average of 1-7, is 4. Obviously this won't work. Note that if you do the above exercise with the numbers 1, 2, 3, 4, 5, 6, 7, 0, 0 (note the two zeroes at the end there), then you'll get the above result.</p>
<p>In other words, if you can't split the number of values up into equally sized sets, the last set will be counted as though it has the same number of values as all the sets preceeding it, but it will be padded with zeroes for all the missing values.</p>
<p>So, <strong>you need equally sized sets</strong>. Tough luck if your original input set consists of a prime number of values.</p>
<p>What I'm worried about here though is loss of precision. I'm not entirely sure <code>Double</code> will give you good enough precision in such a case, if it initially cannot hold the entire sum of the values.</p>
http://stackoverflow.com/questions/1929643/wrapping-existing-objects-to-intercept-method-property-calls-in-net/1929710#19297102Answer by Lasse V. Karlsen for Wrapping existing objects to intercept method/property calls in .NETLasse V. Karlsen2009-12-18T17:45:28Z2009-12-18T17:45:28Z<p>It doesn't work like that, it doesn't change the original object in any way.</p>
<p>Think of it like this. Let's consider moving to China, and working for a Chinese company, that will only pay your salary to a Chinese bank account in a Chinese bank.</p>
<p>So, you need to get a Chinese bank account. Problem is, that the bank you want to use, doesn't speak english, so you have a problem.</p>
<p>What you could do, if this was available, would be to call up a proxy service, a translator service, that on your behalf, calls the bank. Anything you say to this proxy person, will be translated to chinese, and said to the bank official. Anything he/she responds with in chinese will be translated back to english, and spoken to you.</p>
<p>In effect, you can now do something <em>along the communication line</em> when talking to your bank.</p>
<p>However, it does not make your bank officials speak english.</p>
<p>The proxy object, from your example, does not modify the underlying object. Whenever you call methods on your proxy objects, they will in turn call methods on the underlying object, possible doing processing along the way.</p>
<p>But if you sidestep the proxy object, nothing has changed.</p>
http://stackoverflow.com/questions/1927602/dialog-doesnt-display-properly-because-of-a-loop-after-using-show-method-in-c/1927630#19276303Answer by Lasse V. Karlsen for Dialog doesn't display properly because of a loop after using .Show() method in C#Lasse V. Karlsen2009-12-18T11:21:14Z2009-12-18T11:21:14Z<p>You're starving the message loop, forms require message pumping in order to display and function correctly, and your loop blocks this message pump from doing that, pumping and processing messages.</p>
<p>The "simplest" course of action is to intersperse your loop with <code>Application.DoEvents();</code> calls, but that's a hack and often leads to bugs, like the user clicking on buttons twice to open two windows, etc.</p>
<p>The correct way is to handle this in a multithreaded manner, put the blocking code into a background thread... <em>or</em> ... place the form, which I understand is akin to a "Please wait, something is happening" type of form, in its own background thread by itself. Either of these solutions require some work to handle threading issues.</p>
<p>So first, check if <code>DoEvents</code> works for you, but make sure you try clicking in forms, closing the form, etc. to ensure you don't experience odd bugs later on.</p>
http://stackoverflow.com/questions/1925228/sql-server-2000-delete-top-1000/1925245#19252455Answer by Lasse V. Karlsen for SQL Server 2000 Delete Top (1000)Lasse V. Karlsen2009-12-17T23:09:31Z2009-12-17T23:25:52Z<p>How about rewriting the query?</p>
<pre><code>SET ROWCOUNT 1000
DELETE FROM <table> WHERE [DateTime] < @TwoYearsAgo
</code></pre>
<p>See documentation on <a href="http://technet.microsoft.com/en-us/library/ms188774.aspx" rel="nofollow">SET ROWCOUNT (Transact-SQL)</a>.</p>
<p>Also note that per the documentation for <a href="http://technet.microsoft.com/en-us/library/ms189835.aspx" rel="nofollow">DELETE</a>, it supports the <code>TOP</code> clause, but that is apparently new for SQL Server 2005 and up. I'm saying this since it sounds like it isn't supported on your database server, but have you actually tried using it? I don't have access to SQL Server 2000 documentation so I'm unsure if it is supported on that version. It very well might not be.</p>
<pre><code>DELETE TOP (1000) FROM <table> WHERE [DateTime] < @TwoYearsAgo
</code></pre>
<p>Note the difference from the way TOP on select <em>can</em> be written, without the parenthesis. For UPDATE, DELETE and INSERT, the expression must be parenthesized, even if it's only a constant number like above.</p>
http://stackoverflow.com/questions/1924780/subversion-svn-tortoisesvn-commit-not-locked-file/1925280#19252801Answer by Lasse V. Karlsen for Subversion (svn + tortoiseSvn) commit not locked fileLasse V. Karlsen2009-12-17T23:19:14Z2009-12-17T23:19:14Z<p>The lock mechanism in Subversion will not give you, out of the box, a way to prevent commits without a lock first.</p>
<p>You might, emphasis on <em>might</em>, be able to handle that with server hooks, but I'm unsure. Perhaps you should ask a new question where you ask how to create a subversion server hook script that prevents people from committing changes if they don't own the lock on the file first.</p>
<p>The lock mechanism is just a extra tool to manage problematic files, like designer files where the content gets moved around a lot (so merging is a pain), or for binary files, if you store those. But the lock mechanism is not, out of the box, there to prevent you from committing without a lock, it's just a convenience, but can easily be circumvented.</p>
http://stackoverflow.com/questions/1922199/c-convert-string-from-utf-8-to-iso-8859-1-latin1-h/1922238#19222381Answer by Lasse V. Karlsen for C# Convert string from UTF-8 to ISO-8859-1 (Latin1) HLasse V. Karlsen2009-12-17T14:44:54Z2009-12-17T14:44:54Z<p>You need to fix the source of the string in the first place.</p>
<p>A string in .NET is actually just an array of 16-bit unicode code-points, characters, so a string isn't in any particular encoding.</p>
<p>It's when you take that string and convert it to a set of bytes that encoding comes into play.</p>
<p>In any case, the way you did it, encoded a string to a byte array with one character set, and then decoding it with another, will not work, as you see.</p>
<p>Can you tell us more about where that original string comes from, and why you think it has been encoded wrong?</p>
http://stackoverflow.com/questions/1922040/resize-an-image-c/1922059#19220594Answer by Lasse V. Karlsen for Resize an Image C#Lasse V. Karlsen2009-12-17T14:13:08Z2009-12-17T14:13:08Z<p>Create a new <a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx" rel="nofollow">Bitmap</a> in the new size, get a <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.aspx" rel="nofollow">Graphics</a> object from it, set <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.interpolationmode.aspx" rel="nofollow">InterpolationMode</a>, and use <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawimage.aspx" rel="nofollow">DrawImage</a> to paint the original image into the new one in the new size.</p>
http://stackoverflow.com/questions/1922002/creating-an-ilistt-of-itemu/1922038#19220385Answer by Lasse V. Karlsen for Creating an IList<T> of Item<U>?Lasse V. Karlsen2009-12-17T14:09:39Z2009-12-17T14:09:39Z<p>You need to add a non-generic interface to your <code>Item<U></code> and make the collection out of those interfaces.</p>
<p>There is no way you can create a collection of <code>IList<Item<T>></code> where T is some base type for a lot of different object types you want to place into the same list. This is co(ntra)-variance in place which specifically prohibits this.</p>
<p>So you need to instead add something common, that isn't generic, and make the list out of that. For instance, you might make <code>Item<T></code> implement <code>IItem</code>, and create <code>IList<IItem></code> instead.</p>
<p>That's the best you can do.</p>
http://stackoverflow.com/questions/1917935/how-does-c-compilation-get-around-needing-header-files/1917995#191799523Answer by Lasse V. Karlsen for How does C# compilation get around needing header files?Lasse V. Karlsen2009-12-16T21:46:40Z2009-12-17T08:50:47Z<p>I see that there are multiple interpretations of the question. I answered the intra-solution interpretation, but let me fill it out with all the information I know.</p>
<p>The "header file metadata" is present in the compiled assemblies, so any assembly you add a reference to will allow the compiler to pull in the metadata from those.</p>
<p>As for things not yet compiled, part of the current solution, it will do a two-pass compilation, first reading namespaces, type names, member names, ie. everything but the code. Then when this checks out, it will read the code and compile that.</p>
<p>This allows the compiler to know what exists and what doesn't exist (in its universe).</p>
<p>To see the two-pass compiler in effect, test the following code that has 3 problems, two declaration-related problems, and one code problem:</p>
<pre><code>using System;
namespace ConsoleApplication11
{
class Program
{
public static Stringg ReturnsTheWrongType()
{
return null;
}
static void Main(string[] args)
{
CallSomeMethodThatDoesntExist();
}
public static Stringg AlsoReturnsTheWrongType()
{
return null;
}
}
}
</code></pre>
<p>Note that the compiler will only complain about the two <code>Stringg</code> types that it cannot find. If you fix those, then it complains about the method-name called in the Main method, that it cannot find.</p>
http://stackoverflow.com/questions/1917844/how-to-cast-listobject-to-listmyclass/1917872#19178726Answer by Lasse V. Karlsen for How to cast List<Object> to List<MyClass>Lasse V. Karlsen2009-12-16T21:28:56Z2009-12-16T21:28:56Z<p>Note that I am no java programmer, but in .NET and C#, this feature is called contravariance or covariance. I haven't delved into those things yet, since they are new in .NET 4.0, which I'm not using since it's only beta, so I don't know which of the two terms describe your problem, but let me describe the technical issue with this.</p>
<p>Let's assume you were allowed to cast. Note, I say <em>cast</em>, since that's what you said, but there are two operations that could be possible, <em>casting</em> and <em>converting</em>.</p>
<p>Converting would mean that you get a new list object, but you say casting, which means you want to temporarily treat one object as another type.</p>
<p>Here's the problem with that.</p>
<p>What would happen if the following was allowed (note, I'm assuming that before the cast, the list of objects actually only contain Customer objects, otherwise the cast wouldn't work even in this hypothetical version of java):</p>
<pre><code>List<Object> list = getList();
List<Customer> customers = (List<Customer>)list;
list.Insert(0, new someOtherObjectNotACustomer());
Customer c = customers[0];
</code></pre>
<p>In this case, this would attempt to treat an object, that isn't a customer, as a customer, and you would get a runtime error at one point, either form inside the list, or from the assignment.</p>
<p>Generics, however, is supposed to give you type-safe data types, like collections, and since they like to throw the word 'guaranteed' around, this sort of cast, with the problems that follow, is not allowed.</p>
<p>In .NET 4.0 (I know, your question was about java), this will be allowed <em>in some very specific cases</em>, where the compiler can guarantee that the operations you do are safe, but in the general sense, this type of cast will not be allowed. The same holds for java, although I'm unsure about any plans to introduce co- and contravariance to the java language.</p>
<p>Hopefully, someone with better java knowledge than me can tell you the specifics for the java future or implementation.</p>
http://stackoverflow.com/questions/1915328/automated-profiling-of-unit-tests-from-teamcity0Automated profiling of unit tests from TeamCity?Lasse V. Karlsen2009-12-16T15:23:38Z2009-12-16T17:07:51Z
<p>Is there any way to do automated profiling of unit tests when we run them via TeamCity?</p>
<p>The reason I'm asking is that while we should, and most of the time do, have focus on not creating performance-wise bad code, sometimes code slips through that seems to be OK, and indeed works correctly, but the routine is used multiple places and in some cases, the elapsed run-time of a method now takes 10x the time it did before.</p>
<p>This is not necessarily a bug, but it would be nice to be told "Hey, did you know? One of your unit-tests now takes 10x the time it did before you checked in this code.".</p>
<p>So I'm wondering, is there any way to do this?</p>
<p>Note that I say TeamCity because that's what will ultimately run the code, tools, whatever (if something is found), but of course it could be a wholly standalone tool that we could integrate ourselves.</p>
<p>I also see that TeamCity is gathering elapsed time statistics for our unit tests, so my thought was that perhaps there was a tool that could analyze that set of data, to compare latest elapsed time against statistical trends, etc.</p>
<p>Perhaps it's as "easy" as making our own test-runner program?</p>
<p>Has anyone done this, or seen/know of a potential solution for this?</p>
http://stackoverflow.com/questions/1913955/extension-method-convertall/1913981#19139811Answer by Lasse V. Karlsen for Extension Method ConvertAllLasse V. Karlsen2009-12-16T11:11:06Z2009-12-16T11:11:06Z<p><a href="http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx" rel="nofollow"><code>ConvertAll</code></a> will just call your delegate/anonymous method for each element of the list. What this does is entirely up to you.</p>
<p>In the example code you posted, it will attempt to cast each element to a double and return that, which means you'll get a <code>List<Double></code> in return.</p>
<p>You should not use <code>OfType<T></code>, since this will filter the elements based on the type, and will only return a different type than the original if it is type compatible due to inheritance or interface implementation.</p>
<p>In other words, <code>.OfType<Double></code> will return no elements, since none of the ints are also doubles.</p>
http://stackoverflow.com/questions/1847357/can-i-use-the-assemblies-publickey-to-decrypt-a-string-encrypted-with-the-corresp/1847408#18474080Answer by Lasse V. Karlsen for Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?Lasse V. Karlsen2009-12-04T14:48:41Z2009-12-11T10:26:40Z<p>Not in .NET.</p>
<p>In many traditional public-key encryption algorithm, like RSA, you can encrypt and decrypt both ways, typically one way is called "encryption" and the other "signing", even though you actually end up with an encrypted version of something both ways.</p>
<p>However, in .NET the RSA implementation has been crippled, and when signing will only produce digests of the input, not the full processed information.</p>
<p>It seems there's some disagreement about what can and cannot be done with RSA, so let me edit my answer to be more specific.</p>
<p>I'm talking about RSA math, not any particular RSA implementation.</p>
<p>RSA math allows you to encode information either of the two keys (private or public), and the encoded data can only be decoded with the other of the two keys.</p>
<p>Typically, you encode with a public key, encrypting the information, and decode it with the private key, decrypting the information. Or, you take a hash of the information, encode it with the private key, signing the hash, and decode the hash with the public key, in order to compare and verify the signature.</p>
<p>Typical implementations does not allow one to do full encoding of data from private to public, only by hashing the data, but <em>the math behind RSA fully allows this</em>.</p>
http://stackoverflow.com/questions/1714733/use-productivity-tools-in-presentations/1883298#18832981Answer by Lasse V. Karlsen for Use productivity tools in presentationsLasse V. Karlsen2009-12-10T19:16:22Z2009-12-10T19:16:22Z<p>I tend to use DevExpress Refactor! Pro, and GhostDoc, when I do code-related presentations. I try to make sure the audience knows what I'm doing by saying out loud what I'm going to do, but I have also built my own custom tool for this, which you can find a beta of <a href="http://presentationmode.blogspot.com/2009/11/lvkscreenkeys-beta-1-drop.html" rel="nofollow">here: LVK.ScreenKeys</a>.</p>
<p>Basically the tool will pop up, in the upper right corner of the screen, yellow tooltip/toast-like windows showing the key stroke/sequence I invoked, and also a textual description of what it means, depending on the software it was invoked in.</p>
<p>Before I started using such a tool, I invariably had questions like "what did you do now", and if you don't want to use such a tool (there are others besides mine), I would consider not using more than a few functions of such tools.</p>
http://stackoverflow.com/questions/1875821/can-teamcity-commit-the-output-of-one-build-to-another-svn-repository-thereby-st/1875917#18759170Answer by Lasse V. Karlsen for Can TeamCity commit the output of one build to another svn repository, thereby starting another build?Lasse V. Karlsen2009-12-09T18:39:08Z2009-12-09T18:39:08Z<p>Typically you don't commit build output to your repositories. Are you sure that's what you want?</p>
<p>You can make TeamCity copy the output (artifacts) from one build project into directories of another, but in order to commit it, you'll need to add some scripting, like a batch file or similar.</p>
http://stackoverflow.com/questions/1873587/sync-diff-of-the-remote-binary-file/1873601#18736010Answer by Lasse V. Karlsen for Sync (Diff) of the remote binary fileLasse V. Karlsen2009-12-09T12:31:09Z2009-12-09T12:31:09Z<p>To find the differences, you must compare. If you cannot compare, you cannot compute the minimal differences.</p>
<p>What kind of changes do you do to the local file?</p>
<ul>
<li>Inserts?</li>
<li>Deletions?</li>
<li>Updates?</li>
</ul>
<p>If only updates, ie. the size and location of unchanged data is constant, then a block-type checksum solution might work, where you split the file up into blocks, compute the checksum of each, and compare with a list of previous checksums. Then you only have to send the modified blocks.</p>
<p>Also, if possible, you could store two versions of the file locally, the old and modified.</p>
http://stackoverflow.com/questions/1873573/system-exception-incorrect-syntax-i-cant-find-the-problem/1873588#18735884Answer by Lasse V. Karlsen for System.Exception: Incorrect syntax I can't find the problemLasse V. Karlsen2009-12-09T12:28:28Z2009-12-09T12:28:28Z<p>Consider changing the keyword <code>UPGRADE</code> in your SQL to <code>UPDATE</code>, perhaps that's it.</p>
http://stackoverflow.com/questions/1940175/-r-n-appears-as-small-square-boxes-in-word-document-cComment by Lasse V. Karlsen on "\r\n" appears as small square boxes in word document, C#Lasse V. Karlsen2009-12-21T13:49:32Z2009-12-21T13:49:32ZPost some code?http://stackoverflow.com/questions/1939747/making-threads-work-in-parallel-in-c/1939758#1939758Comment by Lasse V. Karlsen on Making Threads work in parallel in c#Lasse V. Karlsen2009-12-21T13:14:18Z2009-12-21T13:14:18ZBut if you use one connection, how will the server know which data belongs together?http://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-3/1938490#1938490Comment by Lasse V. Karlsen on Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-21T10:42:56Z2009-12-21T10:42:56ZOh, I have good experience with fluent interfaces :) I even have a side-project going to try to auto-generate a fluent interface from a language file, with partial methods where code should be injected. You should see the fluent interface I built for my IoC container, there's <i>way</i> too many classes for it :Phttp://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-3/1938490#1938490Comment by Lasse V. Karlsen on Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-21T09:38:20Z2009-12-21T09:38:20ZThis was really promising. I have a similar case somewhere else where I've already used this approach, but not to solve the double type inference problem, it just lent itself to that approach. Basically, in that other place, I have a syntax like: obj.Produce().Sums(), I could easily incorporate the same here. This might even let me work with IRange-interfaces not explicitly defined by me! I'm definitely going to look into this later tonight!http://stackoverflow.com/questions/1937690/c-priority-queue/1937735#1937735Comment by Lasse V. Karlsen on C# Priority QueueLasse V. Karlsen2009-12-21T02:45:17Z2009-12-21T02:45:17ZI have a generic heap here: <a href="http://vkarlsen.serveftp.com:81/websvn/listing.php?repname=LVK&path=/LVK_3_5/trunk/LVK.Core/Collections/" rel="nofollow">vkarlsen.serveftp.com:81/websvn/…</a>, username and password both 'guest' (without the quotes). The heap still falls prey to the "problem" you mention of requiring IComparable, but you can use the ItemWithPriority class that Mark has posted.http://stackoverflow.com/questions/1937690/c-priority-queue/1937735#1937735Comment by Lasse V. Karlsen on C# Priority QueueLasse V. Karlsen2009-12-21T02:43:43Z2009-12-21T02:43:43ZWould a Heap work?http://stackoverflow.com/questions/1937774/why-is-this-c-code-contract-malformedComment by Lasse V. Karlsen on Why is this C# Code Contract malformed?Lasse V. Karlsen2009-12-21T01:52:25Z2009-12-21T01:52:25ZTo be honest, I haven't looked at code contracts for C# 4.0 yet, I'm still swamped with work in C# 3.0 and .NET 3.5. But, if the point of calling it a "contract" is that it is just that, then remember that criteria that stipulates when a contract is valid is written <i>in</i> the contract, not outside of it. You don't have a contract that says when that other contract is valid. So to me, this sounds like must be like this, you must write a contract that specifies when everything is peachy, and that contract must not be dependent on outside criteria.http://stackoverflow.com/questions/1937774/why-is-this-c-code-contract-malformedComment by Lasse V. Karlsen on Why is this C# Code Contract malformed?Lasse V. Karlsen2009-12-21T01:45:55Z2009-12-21T01:45:55ZHow about: Contract.Ensures(result == null || result >= 0); ?http://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-3/1937729#1937729Comment by Lasse V. Karlsen on Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-21T01:27:28Z2009-12-21T01:27:28ZOne thing I was hoping to allow, since this is a class library after all, would be that I would provide the basic interfaces for "ranges", ie. from-to type, for any comparable type, and that new implementations could be built that the framework could handle. But the type inference problems seems to prohibit that model currently, so I'll have to come back to that portion of it when I remodel my C# 4.0 version next year.http://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-3/1937729#1937729Comment by Lasse V. Karlsen on Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-21T01:23:08Z2009-12-21T01:23:08ZYou can find my final code here: <a href="http://vkarlsen.serveftp.com:81/websvn/listing.php?repname=LVK&path=/LVK_3_5/trunk/LVK.Core/Collections/" rel="nofollow">vkarlsen.serveftp.com:81/websvn/…</a> (username and password are both 'guest' without the quotes.) The methods in questions are defined in RangeExtensions.cs, and the interfaces are in IRange.cs and IRange.WithData.cs.http://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-3/1937729#1937729Comment by Lasse V. Karlsen on Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-21T01:18:16Z2009-12-21T01:18:16ZThe way I solved it was, if you look at that code at the bottom of my post, which has a "Slice1" method where inference works, for one of the two interfaces, and "Slice2", which can handle both interfaces, but inference doesn't work. The way I handle it was to write two Slice1-type methods, one for each interface, and make the Slice2-type method private, and contain the actual implementation. The two Slice1-type methods thus just forwards the call to the private one, with explicit type specifications. This also had the upshot of allowing me to do null-checks on call, instead of on enumeration.http://stackoverflow.com/questions/1937690/c-priority-queue/1937706#1937706Comment by Lasse V. Karlsen on C# Priority QueueLasse V. Karlsen2009-12-21T01:13:40Z2009-12-21T01:13:40ZEasily fixed, just negate the priority values, if SortedList is good enough.http://stackoverflow.com/questions/1937690/c-priority-queue/1937706#1937706Comment by Lasse V. Karlsen on C# Priority QueueLasse V. Karlsen2009-12-21T01:10:52Z2009-12-21T01:10:52ZProblem with SortedList is that it doesn't allow duplicate priorities, so it forces you to ensure unique priorities.http://stackoverflow.com/questions/1936919/what-is-a-good-example-to-show-to-a-non-programmer-to-explain-what-programming-lComment by Lasse V. Karlsen on What is a good example to show to a non-programmer to explain what programming "looks like"?Lasse V. Karlsen2009-12-20T21:52:23Z2009-12-20T21:52:23ZWhat, you're telling me you guys <b>are not</b> programming by looking at just green matrix-style numbers all day? Man, no wonder C# was so hard to grok.http://stackoverflow.com/questions/1936785/generic-type-inference-with-interface-inheritance-contra-variance-in-c-3Comment by Lasse V. Karlsen on Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3Lasse V. Karlsen2009-12-20T21:30:55Z2009-12-20T21:30:55ZI have currently solved it with two extension methods, and one internally. There is no problem if I explicitly state the types in the calls, it's just the type inference that is problematic, and with two extension methods, both interfaces have their own entrypoint, and then those two methods explicitly state the types when calling a common private method.