User Daniel Brückner - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T17:42:43Zhttp://stackoverflow.com/feeds/user/77507http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903702/associate-file-type-and-icon/1903735#19037350Answer by Daniel Brückner for Associate File Type and IconDaniel Brückner2009-12-14T21:49:08Z2009-12-14T21:49:08Z<p>This <a href="http://www.codeproject.com/KB/dotnet/System%5FFile%5FAssociation.aspx" rel="nofollow">CodeProject article</a> has some source code demonstrating file association by code.</p>
http://stackoverflow.com/questions/1903333/best-linq2sql-equivalent-of-isnullmaxid/1903407#19034071Answer by Daniel Brückner for Best Linq2Sql equivalent of IsNull(Max(id))Daniel Brückner2009-12-14T20:50:02Z2009-12-14T21:32:41Z<p>I would use something like the following.</p>
<pre><code>context.Table.Max(row => (Int32?)row.Id) ?? 0
</code></pre>
<p>And by the way, I think your second suggestion is much more clear about the purpose than the first one.</p>
<p><strong>UPDATE</strong></p>
<p>I just tested the query with LINQPad. Should LINQPad cause the query to work while it does not in code, your second suggestion is probably the best solution.</p>
<pre><code>context.Table
.Select(row => row.Id)
.OrderByDescending(id => id)
.FirstOrDefault()
</code></pre>
<p>The drawback is that the default value is fixed at zero. This can be changed with the following query.</p>
<pre><code>context.Table
.Select(row => (Int32?)row.Id)
.OrderByDescending(id => id)
.FirstOrDefault() ?? 0
</code></pre>
<p>And just to note, the following does not work, because <code>LastOrDefault()</code> is not supported by LINQ to SQL.</p>
<pre><code>context.Table
.Select(row => row.Id)
.OrderBy(id => id)
.LastOrDefault()
</code></pre>
http://stackoverflow.com/questions/1902673/c-anonymous-type/1902684#19026847Answer by Daniel Brückner for C# Anonymous TypeDaniel Brückner2009-12-14T18:39:57Z2009-12-14T18:39:57Z<p>The compiler generates a regular class for your anonymous type and chooses a name that is valid in IL but not in C# to prevent name conflicts with your type names.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731857#73185727Answer by Daniel Brückner for Interview question: f(f(n)) == -nDaniel Brückner2009-04-08T21:08:21Z2009-11-22T17:05:39Z<p>This is true for all negative numbers.</p>
<pre>
f(n) = abs(n)
</pre>
<p>Because there is one more negative number than there are positive numbers for twos complement integers, <code>f(n) = abs(n)</code> is valid for one more case than <code>f(n) = n > 0 ? -n : n</code> solution that is the same same as <code>f(n) = -abs(n)</code>. Got you by one ... :D</p>
<p><strong>UPDATE</strong></p>
<p>No, it is not valid for one case more as I just recognized by litb's comment ... <code>abs(Int.Min)</code> will just overflow ...</p>
<p>I thought about using mod 2 information, too, but concluded, it does not work ... to early. If done right, it will work for all numbers except <code>Int.Min</code> because this will overflow.</p>
<p><strong>UPDATE</strong></p>
<p>I played with it for a while, looking for a nice bit manipulation trick, but I could not find a nice one-liner, while the mod 2 solution fits in one.</p>
<pre>
f(n) = 2n(abs(n) % 2) - n + sgn(n)
</pre>
<p>In C#, this becomes the following:</p>
<pre><code>public static Int32 f(Int32 n)
{
return 2 * n * (Math.Abs(n) % 2) - n + Math.Sign(n);
}
</code></pre>
<p>To get it working for all values, you have to replace <code>Math.Abs()</code> with <code>(n > 0) ? +n : -n</code> and include the calculation in an <code>unchecked</code> block. Then you get even <code>Int.Min</code> mapped to itself as unchecked negation does.</p>
<p><strong>UPDATE</strong></p>
<p>Inspired by another answer I am going to explain how the function works and how to construct such a function.</p>
<p>Lets start at the very beginning. The function <code>f</code> is repeatedly applied to a given value <code>n</code> yielding a sequence of values.</p>
<pre>
n => f(n) => f(f(n)) => f(f(f(n))) => f(f(f(f(n)))) => ...
</pre>
<p>The question demands <code>f(f(n)) = -n</code>, that is two successive applications of <code>f</code> negate the argument. Two further applications of <code>f</code> - four in total - negate the argument again yielding <code>n</code> again.</p>
<pre>
n => f(n) => -n => f(f(f(n))) => n => f(n) => ...
</pre>
<p>Now there is a obvious cycle of length four. Substituting <code>x = f(n)</code> and noting that the obtained equation <code>f(f(f(n))) = f(f(x)) = -x</code> holds, yields the following.</p>
<pre>
n => x => -n => -x => n => ...
</pre>
<p>So we get a cycle of length four with two numbers and the two numbers negated. If you imagine the cycle as a rectangle, negated values are located at opposite corners.</p>
<p>One of many solution to construct such a cycle is the following starting from n.</p>
<pre>
n => negate and subtract one
-n - 1 = -(n + 1) => add one
-n => negate and add one
n + 1 => subtract one
n
</pre>
<p>A concrete example is of such an cycle is <code>+1 => -2 => -1 => +2 => +1</code>. We are almost done. Noting that the constructed cycle contains an odd positive number, its even successor, and both numbers negate, we can easily partition the integers into many such cycles (<code>2^32</code> is a multiple of four) and have found a function that satisfies the conditions.</p>
<p>But we have a problem with zero. The cycle must contain <code>0 => x => 0</code> because zero is negated to itself. And because the cycle states already <code>0 => x</code> it follows <code>0 => x => 0 => x</code>. This is only a cycle of length two and <code>x</code> is turned into itself after two applications, not into <code>-x</code>. Luckily there is one case that solves the problem. If <code>X</code> equals zero we obtain a cycle of length one containing only zero and we solved that problem concluding that zero is a fixed point of <code>f</code>.</p>
<p>Done? Almost. We have <code>2^32</code> numbers, zero is a fixed point leaving <code>2^32 - 1</code> numbers, and we must partition that number into cycles of four numbers. Bad that <code>2^32 - 1</code> is not a multiple of four - there will remain three numbers not in any cycle of length four.</p>
<p>I will explain the remaining part of the solution using the smaller set of 3 bit signed itegers ranging from <code>-4</code> to <code>+3</code>. We are done with zero. We have one complete cycle <code>+1 => -2 => -1 => +2 => +1</code>. Now let us construct the cycle starting at <code>+3</code>.</p>
<pre>
+3 => -4 => -3 => +4 => +3
</pre>
<p>The problem that arises is that <code>+4</code> is not representable as 3 bit integer. We would obtain <code>+4</code> by negating <code>-3</code> to <code>+3</code> - what is still a valid 3 bit integer - but then adding one to <code>+3</code> (binary <code>011</code>) yields <code>100</code> binary. Interpreted as unsigned integer it is <code>+4</code> but we have to interpret it as signed integer <code>-4</code>. So actually <code>-4</code> for this example or <code>Int.MinValue</code> in the general case is a second fixed point of integer arithmetic negation - <code>0</code> and <code>Int.MinValue</code> are mapped to themselve. So the cycle is actually as follows.</p>
<pre>
+3 => -4 => -3 => -4 => <b>-3</b>
</pre>
<p>It is a cycle of length two and additionally <code>+3</code> enters the cycle via <code>-4</code>. In consequence <code>-4</code> is correctly mapped to itself after two function applications, <code>+3</code> is correctly mapped to <code>-3</code> after two function applications, but <code>-3</code> is erroneously mapped to itself after two function applications.</p>
<p>So we constructed a function that works for all integers but one. Can we do better? No, we cannot. Why? We have to construct cycles of length four and are able to cover the whole integer range up to four values. The remaining values are the two fixed points <code>0</code> and <code>Int.MinValue</code> that must be mapped to themselves and two arbitrary integers <code>x</code> and <code>-x</code> that must be mapped to each other by two function applications.</p>
<p>To map <code>x</code> to <code>-x</code> and vice versa they must form a four cycle and they must be located at opposite corners of that cycle. In consequence <code>0</code> and <code>Int.MinValue</code> have to be at opposite corners, too. This will correctly map <code>x</code> and <code>-x</code> but swap the two fixed points <code>0</code> and <code>Int.MinValue</code> after two function applications and leave us with two failing inputs. So it is not possible to construct a function that works for all values, but we have one that works for all values except one and this is the best we can achieve.</p>
http://stackoverflow.com/questions/1593999/how-to-manage-a-dictionary-of-lazily-created-objects-in-a-multithreaded-environme/1767678#17676780Answer by Daniel Brückner for How to manage a dictionary of lazily created objects in a multithreaded environment in .NET?Daniel Brückner2009-11-20T00:59:01Z2009-11-20T00:59:01Z<p>The easiest solution I can think of is wrapping a <a href="http://msdn.microsoft.com/en-us/library/system.collections.hashtable.aspx" rel="nofollow"><code>Hashtable</code></a> to get type and thread safety. You can do this because the <code>HashTable</code> class is thread-safe for multiple readers and a single writer. The drawback is - as far as I know - that <code>Hashtable</code> is slower then <code>Dictionary<TKey, TValue></code>. And for developers like me caring about the details it costs quite an effort to use a collection of <code>Object</code>s.</p>
<pre><code>internal abstract class LazyInitializedDictionary<TKey, TValue>
{
private readonly Hashtable store = new Hashtable();
internal TValue this[TKey key]
{
get
{
if (!this.store.ContainsKey(key))
{
lock (this.store)
{
if (!this.store.ContainsKey(key))
{
this.store.Add(key, this.CreateNewValue(key));
}
}
}
return (TValue)this.store[key];
}
}
internal Boolean Remove(TKey key)
{
if (this.store.ContainsKey(key))
{
lock (this.store)
{
if (this.store.ContainsKey(key))
{
this.store.Remove(key);
return true;
}
}
}
return false;
}
protected abstract TValue CreateNewValue(TKey key);
}
</code></pre>
<p>With this at hand you can create a derived class implementing your desired behavior. For example a <em>very helpful</em> class making <code>String.Length</code> obsolete... ;)</p>
<pre><code>internal sealed class StringLengthLookup :
LazyInitializedDictionary<String, Int32>
{
protected override Int32 CreateNewValue(String key)
{
return key.Length;
}
}
</code></pre>
http://stackoverflow.com/questions/1765579/fast-algorithm-for-searching-for-substrings-in-a-string/1765616#17656168Answer by Daniel Brückner for Fast algorithm for searching for substrings in a stringDaniel Brückner2009-11-19T18:42:53Z2009-11-19T18:51:57Z<p>Your best options are the <a href="http://en.wikipedia.org/wiki/Aho-Corasick%5Falgorithm" rel="nofollow">Aho-Corasick algorithm</a> and the <a href="http://en.wikipedia.org/wiki/Rabin-Karp%5Fstring%5Fsearch%5Falgorithm" rel="nofollow">Rabin-Karp algorithm</a>. Because I am no Java developer I cannot tell if there are any out-of-the-box framework functions or libraries.</p>
<p>Just to add - if your input is not that large, you don't want to repeat the search many times and you do not have many patterns, it might be even a good idea to use a single pattern algorithm several times. The <a href="http://en.wikipedia.org/wiki/String%5Fsearching%5Falgorithm" rel="nofollow">Wikipedia article on search algorithms</a> gives many algorithms with running and preprocessing times so you can judge the options.</p>
http://stackoverflow.com/questions/1765510/how-to-force-multiple-commands-to-execute-in-same-threading-timeslice/1765565#17655653Answer by Daniel Brückner for How to force multiple commands to execute in same threading timeslice?Daniel Brückner2009-11-19T18:37:23Z2009-11-19T18:37:23Z<p>Performing the operation in a single time slice will not help at all - the operation could just execute on another core or processor in parallel and access the stream while you perform the swap. You will have to use locking to prevent everybody from accessing the stream while it is in an inconsistent state.</p>
http://stackoverflow.com/questions/1763649/running-time-of-minimum-spanning-tree-prim-method/1765031#17650310Answer by Daniel Brückner for Running time of minimum spanning tree? ( Prim method )Daniel Brückner2009-11-19T17:20:37Z2009-11-19T17:20:37Z<p>I did not have to deal with the algorithm before, but what you have implemented does not match the algorithm as explained on <a href="http://en.wikipedia.org/wiki/Prim%27s%5Falgorithm" rel="nofollow">Wikipedia</a>. The algorithm there works as follows.</p>
<ol>
<li>But all vertices into the queue. O(V)</li>
<li>While the queue is not empty... O(V)
<ol>
<li>Take the edge with the minimum weight from the queue. O(log(V))</li>
<li>Update the weights of adjacent vertices. O(E / V), this is the average number of adjacent vertices.</li>
<li>Reestablish the queue structure. O(log(V))</li>
</ol></li>
</ol>
<p>This gives </p>
<pre>
O(V) + O(V) * (O(log(V)) + O(V/E))
= O(V) + O(V) * O(log(V)) + O(V) * O(E / V)
= O(V) + O(V * log(V)) + O(E)
= O(V * log(V)) + O(E)
</pre>
<p>exactly what one expects.</p>
http://stackoverflow.com/questions/1762661/c-plugin-model-with-user-supplied-regex/1762744#17627441Answer by Daniel Brückner for C# Plugin model with user supplied RegExDaniel Brückner2009-11-19T11:45:19Z2009-11-19T11:45:19Z<p>A plug-in system is absolute overkill. Just use the <code>App.config</code> to store the expressions and show them in a combo box or something similar. Have a look at this <a href="http://www.codeproject.com/KB/dotnet/mysteriesofconfiguration.aspx" rel="nofollow">great article series</a> how to access the configuration. Additional reference for the <a href="http://msdn.microsoft.com/en-us/library/system.configuration.aspx" rel="nofollow"><code>System.Configuration</code> namespace</a> comes from the MSDN.</p>
http://stackoverflow.com/questions/1762418/process-vs-thread/1762465#17624652Answer by Daniel Brückner for Process vs ThreadDaniel Brückner2009-11-19T10:51:28Z2009-11-19T11:22:53Z<p>Threads share data and code while processes do not. The stack is not shared for both.</p>
<p>Processes can also share memory, more precisely code, for example after a <code>Fork()</code>, but this is an implementation detail and (operating system) optimization. Code shared by multiple processes will (hopefully) become duplicated on the first write to the code - this is known as <a href="http://en.wikipedia.org/wiki/Copy-on-write" rel="nofollow">copy-on-write</a>. I am not sure about the exact semantics for the code of threads, but I assume shared code.</p>
<pre>
Process Thread
Stack private private
Data private shared
Code private<sup>1</sup> shared<sup>2</sup>
</pre>
<p><sup>1</sup> The code is <em>logically</em> private but might be shared for performance reasons.
<sup>2</sup> I am not 100% sure.</p>
http://stackoverflow.com/questions/1738128/minesweeper-algorithm/1758774#17587740Answer by Daniel Brückner for Minesweeper algorithmDaniel Brückner2009-11-18T20:18:31Z2009-11-18T20:18:31Z<p>I just want to add the following if you try to write a solver - <a href="http://www.claymath.org/Popular%5FLectures/Minesweeper/" rel="nofollow">Minesweeper is NP complete</a>. That means until someone proves <a href="http://en.wikipedia.org/wiki/P%5Fversus%5FNP%5Fproblem" rel="nofollow">P = NP</a> it might be possible that you can do nothing better then performing a brute force search in some situations (but maybe the game it is not NP complete for small fields). </p>
http://stackoverflow.com/questions/1646267/entity-framework-select-specific-columns-and-return-strongly-typed-without-losi/1646446#16464460Answer by Daniel Brückner for Entity Framework - Select specific columns and return strongly typed without losing castDaniel Brückner2009-10-29T20:46:15Z2009-10-29T20:46:15Z<p>You are probably on the wrong way. At first I would assume that <code>Action</code> should be an abstract class and you should not be able to create instances of it at all. If you then only fetch a subset of the properties and the subset does no longer allow to discriminate between events and activities, it is probably the wrong way to try making events and activities out of them.</p>
<p>So it actually seems not to be a technical problem - it should be quite easy to include some discrimination information in the anonymous type - but a design problem. I suggest to rethink if it is required to discriminate the query result and if so if it is really a good idea to discriminate the result in absence of an discriminator.</p>
http://stackoverflow.com/questions/1639976/understanding-a-factorial-function-in-python/1640050#16400501Answer by Daniel Brückner for Understanding a factorial function in pythonDaniel Brückner2009-10-28T20:52:08Z2009-10-28T20:52:08Z<p>It just attaches an attribute called <code>lstFactorial</code> to <code>factorial</code>. This attribute is a list of 1000 values used to cache the results of previous calls.</p>
http://stackoverflow.com/questions/1636477/linq-one-to-many-insert-when-many-already-exists/1636589#16365890Answer by Daniel Brückner for Linq one to many insert when many already existsDaniel Brückner2009-10-28T11:09:18Z2009-10-28T11:23:31Z<p>Yo have to add the query result to the case studies collection instead of trying to replace it.</p>
<pre><code>var service = new Service { ... };
foreach (var caseStudy in db.CaseStudies.Where(s => s.Name == caseStudyName)
{
service.CaseStudies.Add(caseStudy);
}
</code></pre>
<p>You can wrap this in an extension method and get a nice syntax.</p>
<pre><code>public static class ExtensionMethods
{
public static void AddRange<T>(this EntityCollection<T> entityCollection,
IEnumerable<T> entities)
{
// Add sanity checks here.
foreach (T entity in entities)
{
entityCollection.Add(entity);
}
}
}
</code></pre>
<p>And now you get the following.</p>
<pre><code>var service = new Service { ... };
service.CaseStudies.AddRange(db.CaseStudies.Where(s => s.Name == caseStudyName));
</code></pre>
http://stackoverflow.com/questions/1636085/how-to-encode-latitude-longitude-for-box-search/1636423#16364230Answer by Daniel Brückner for How to encode latitude/longitude for box search?Daniel Brückner2009-10-28T10:34:16Z2009-10-28T10:34:16Z<p>You can theoretical use <a href="http://en.wikipedia.org/wiki/Pairing%5Ffunction" rel="nofollow">Cantor pairing function</a> to map the four coordinates of your rectangle to a single value but I am not sure if it is (easily) possible to perform inclusion test on such values.</p>
http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633283#163328321Answer by Daniel Brückner for Design pattern for class with upwards of 100 propertiesDaniel Brückner2009-10-27T19:54:08Z2009-10-27T19:54:08Z<p>The bad design is obviously in the system you are submitting to - no invoice has 100+ properties that cannot be grouped into a substructure. For example an invoice will have a customer and a customer will have an id and an address. The address in turn will have a street, a postal code, and what else. But all this properties should not belong directly to the invoice - an invoice has no customer id or postal code.</p>
<p>If you have to build an invoice class with all these properties directly attached to the invoice, I suggest to make a clean design with multiple classes for a customer, an address, and all the other required stuff and then just wrap this well designed object graph with a fat invoice class having no storage and logic itself just passing all operations to the object graph behind.</p>
http://stackoverflow.com/questions/1633014/good-way-to-concatenate-string-representations-of-objects/1633035#16330350Answer by Daniel Brückner for Good way to concatenate string representations of objects?Daniel Brückner2009-10-27T19:12:26Z2009-10-27T19:42:10Z<p>You are missing null checks for the sequence and the items of the sequence. And yes, it is not the fastest and most memory efficient way. One would probably just enumerate the sequence and render the string representations of the items into a <code>StringBuilder</code>. But does this really matter? Are you experiencing performance problems? Do you need to optimize?</p>
http://stackoverflow.com/questions/1625359/java-like-thread-synchronization-in-c/1625390#16253903Answer by Daniel Brückner for Java-like thread synchronization in C#Daniel Brückner2009-10-26T15:08:21Z2009-10-26T15:15:04Z<p>The preferred solution is to wrap the method body in a <code>lock</code> statement.</p>
<pre><code>internal class Foo
{
private Object lockObject = new Object();
private void ChangeVars()
{
lock (this.lockObject)
{
// Manipulate the state.
}
}
}
</code></pre>
<p>You can use declarative synchronization, too, but this has the obvious drawback that you have to derive from <a href="http://msdn.microsoft.com/en-us/library/system.contextboundobject.aspx" rel="nofollow"><code>ContextBoundObject</code></a> and all methods decorated with the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.contexts.synchronizationattribute.aspx" rel="nofollow"><code>Synchronization</code></a> attribute share the same lock object limiting the lock granularity.</p>
<pre><code>internal class Foo : ContextBoundObject
{
[Synchronization]
private void ChangeVars()
{
// Manipulate the state.
}
}
</code></pre>
http://stackoverflow.com/questions/1556378/algorithm-that-searches-for-related-items-based-on-common-tags/1556557#15565570Answer by Daniel Brückner for Algorithm that searches for related items based on common tagsDaniel Brückner2009-10-12T20:01:26Z2009-10-12T20:08:32Z<p>Assuming a table <code>Questions</code> with a primary key column <code>Id</code>, a table <code>Tags</code> with a primary key column <code>Id</code>, too, and a join table <code>QuestionTags</code> with a composite primary key <code>QuestionId</code> and <code>TagId</code> referencing the primary keys of the two former tables, the following query will give the desired result (in SQL Server 2005).</p>
<pre><code>SELECT q1.Id AS Id1, q2.Id AS Id2,
(SELECT COUNT(*) FROM QuestionTags qt1 INNER JOIN QuestionTags qt2
ON qt1.QuestionId = q1.Id AND qt2.QuestionId = q2.Id AND qt1.TagId = qt2.TagId) AS TagCount
FROM Questions q1 INNER JOIN Questions q2 ON q1.Id < q2.Id
ORDER BY TagCount DESC
</code></pre>
<p>This can be improved to the following.</p>
<pre><code>SELECT qt1.QuestionId AS Id1, qt2.QuestionId AS Id2, COUNT(*) AS TagCount
FROM QuestionTags qt1 INNER JOIN QuestionTags qt2
ON qt1.QuestionId < qt2.QuestionId AND qt1.TagId = qt2.TagId
GROUP BY qt1.QuestionId, qt2.QuestionId
ORDER BY TagCount DESC
</code></pre>
http://stackoverflow.com/questions/1536954/why-does-an-unhandled-exception-not-terminate-a-process-while-debugging1Why does an unhandled exception not terminate a process while debugging?Daniel Brückner2009-10-08T10:30:18Z2009-10-08T10:43:18Z
<p>This is a behavior I noticed several times before and I would like to know the reason behind that. If you run the following program under the (Visual Studio 2008) debugger, the debugger will keep breaking on the <code>throw</code> statement no matter how often you continue debugging. You have to stop debugging to get out there. I would expect that the debugger breaks once and then the process terminates as it happens if you run the program without the debugger. Is anybody aware of a good reason for this behavior?</p>
<pre><code>using System;
namespace ExceptionTest
{
static internal class Program
{
static internal void Main()
{
try
{
throw new Exception();
}
catch (Exception exception)
{
Console.WriteLine(exception.Message);
// The debuger will never go beyond
// the throw statement and terminate
// the process. Why?
throw;
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1535078/moving-between-two-specific-points/1535094#15350940Answer by Daniel Brückner for Moving between two specific pointsDaniel Brückner2009-10-08T01:14:42Z2009-10-08T01:14:42Z<p>This is actually quite easy. </p>
<pre><code>PointF p1 = new PointF(..., ...);
PointF p2 = new PointF(..., ...);
PointF midPoint = new PointF((p1.X + p2.X) / 2, (p1.Y + p2.Y) / 2);
</code></pre>
<p>The midpoint of two points (x<sub>1</sub>, y<sub>1</sub>) and (x<sub>2</sub>, y<sub>2</sub>) is the points ((x<sub>1</sub> + x<sub>2</sub>) / 2, (y<sub>1</sub> + y<sub>2</sub>) / 2).</p>
http://stackoverflow.com/questions/1534748/design-an-efficient-algorithm-to-sort-5-distinct-keys-in-fewer-than-8-comparisons/1534799#15347994Answer by Daniel Brückner for Design an efficient algorithm to sort 5 distinct keys in fewer than 8 comparisonsDaniel Brückner2009-10-07T23:38:09Z2009-10-08T01:08:41Z<p>Five item can be sorted with seven comparisons in the worst cast because log<sub>2</sub>(5!) = 6.9. I suggest to check if any standard sort sort algorithm achieves this number - if not it should be quite easy to hard-code a comparison sequence because of the low number of required comparisons.</p>
<p>I suggest to write a program to find the comparison sequence. Create a list with all 120 permutations of the numbers one to five. Then try all ten possible comparisons and select that one, that splits the list as good as possible in two equal sized lists. Perform this split and apply the same procedure to two lists recursively.</p>
<p>I wrote a small program to do this and here is the result.</p>
<pre><code>Comparison 1: 0-1 [60|60] // First comparison item 0 with item 1, splits case 60/60
Comparison 2: 2-3 [30|30] // Second comparison for the first half of the first comparison
Comparison 3: 0-2 [15|15] // Third comparison for the first half of the second comparison for the first half of first comparison
Comparison 4: 2-4 [8|7]
Comparison 5: 3-4 [4|4]
Comparison 6: 1-3 [2|2]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 6: 1-4 [2|2]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 5: 0-4 [4|3]
Comparison 6: 1-2 [2|2]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 6: 1-2 [1|2]
Comparison 7: 1-3 [1|1]
Comparison 4: 0-4 [8|7]
Comparison 5: 1-4 [4|4]
Comparison 6: 1-3 [2|2]
Comparison 7: 3-4 [1|1]
Comparison 7: 0-3 [1|1]
Comparison 6: 3-4 [2|2]
Comparison 7: 0-3 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 5: 0-3 [4|3]
Comparison 6: 1-3 [2|2]
Comparison 7: 2-4 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 6: 2-4 [2|1]
Comparison 7: 3-4 [1|1]
Comparison 3: 0-3 [15|15] // Third comparison for the second half of the second comparison for the first half of first comparison
Comparison 4: 3-4 [8|7]
Comparison 5: 2-4 [4|4]
Comparison 6: 1-2 [2|2]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 6: 1-4 [2|2]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 5: 0-4 [4|3]
Comparison 6: 1-3 [2|2]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 6: 1-2 [2|1]
Comparison 7: 1-3 [1|1]
Comparison 4: 0-4 [8|7]
Comparison 5: 1-4 [4|4]
Comparison 6: 1-2 [2|2]
Comparison 7: 2-4 [1|1]
Comparison 7: 0-2 [1|1]
Comparison 6: 2-4 [2|2]
Comparison 7: 0-2 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 5: 0-2 [4|3]
Comparison 6: 1-2 [2|2]
Comparison 7: 3-4 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 6: 2-4 [1|2]
Comparison 7: 3-4 [1|1]
Comparison 2: 2-3 [30|30] // Second comparison for the second half of the first comparison
Comparison 3: 0-3 [15|15]
Comparison 4: 0-4 [7|8]
Comparison 5: 0-2 [3|4]
Comparison 6: 2-4 [2|1]
Comparison 7: 3-4 [1|1]
Comparison 6: 1-2 [2|2]
Comparison 7: 3-4 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 5: 1-4 [4|4]
Comparison 6: 2-4 [2|2]
Comparison 7: 1-2 [1|1]
Comparison 7: 0-2 [1|1]
Comparison 6: 1-2 [2|2]
Comparison 7: 0-2 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 4: 3-4 [7|8]
Comparison 5: 0-4 [3|4]
Comparison 6: 1-2 [1|2]
Comparison 7: 1-3 [1|1]
Comparison 6: 1-3 [2|2]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 5: 2-4 [4|4]
Comparison 6: 1-4 [2|2]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 6: 1-2 [2|2]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 3: 0-2 [15|15]
Comparison 4: 0-4 [7|8]
Comparison 5: 0-3 [3|4]
Comparison 6: 2-4 [1|2]
Comparison 7: 3-4 [1|1]
Comparison 6: 1-3 [2|2]
Comparison 7: 2-4 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 5: 1-4 [4|4]
Comparison 6: 3-4 [2|2]
Comparison 7: 1-3 [1|1]
Comparison 7: 0-3 [1|1]
Comparison 6: 1-3 [2|2]
Comparison 7: 0-3 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 4: 2-4 [7|8]
Comparison 5: 0-4 [3|4]
Comparison 6: 1-2 [2|1]
Comparison 7: 1-3 [1|1]
Comparison 6: 1-2 [2|2]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 5: 3-4 [4|4]
Comparison 6: 1-4 [2|2]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 6: 1-3 [2|2]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-2 [1|1]
</code></pre>
<p>But now the question is how to implement this in an efficient way. Maybe one could use a look-up table to store the comparison sequence. I am also not sure how to derive the ordered output from this comparison sequence in an efficient way.</p>
<p>Sorting the result from above by the comparison reveals an obvious structure for the first comparisons, but it becomes harder with increasing comparison number. All blocks are symmetric around the middle indicated by <code>-----</code>.</p>
<pre><code>Comparison 1: 0-1 [60|60]
Comparison 2: 2-3 [30|30]
Comparison 2: 2-3 [30|30]
Comparison 3: 0-2 [15|15]
Comparison 3: 0-3 [15|15]
-----
Comparison 3: 0-3 [15|15]
Comparison 3: 0-2 [15|15]
Comparison 4: 2-4 [8|7]
Comparison 4: 0-4 [8|7]
Comparison 4: 3-4 [8|7]
Comparison 4: 0-4 [8|7]
-----
Comparison 4: 0-4 [7|8]
Comparison 4: 3-4 [7|8]
Comparison 4: 0-4 [7|8]
Comparison 4: 2-4 [7|8]
Comparison 5: 3-4 [4|4]
Comparison 5: 0-4 [4|3]
Comparison 5: 1-4 [4|4]
Comparison 5: 0-3 [4|3]
Comparison 5: 2-4 [4|4]
Comparison 5: 0-4 [4|3]
Comparison 5: 1-4 [4|4]
Comparison 5: 0-2 [4|3]
-----
Comparison 5: 0-2 [3|4]
Comparison 5: 1-4 [4|4]
Comparison 5: 0-4 [3|4]
Comparison 5: 2-4 [4|4]
Comparison 5: 0-3 [3|4]
Comparison 5: 1-4 [4|4]
Comparison 5: 0-4 [3|4]
Comparison 5: 3-4 [4|4]
Comparison 6: 1-3 [2|2]
Comparison 6: 1-4 [2|2]
Comparison 6: 1-2 [2|2]
Comparison 6: 1-2 [1|2]
Comparison 6: 1-3 [2|2]
Comparison 6: 3-4 [2|2]
Comparison 6: 1-3 [2|2]
Comparison 6: 2-4 [2|1]
Comparison 6: 1-2 [2|2]
Comparison 6: 1-4 [2|2]
Comparison 6: 1-3 [2|2]
Comparison 6: 1-2 [2|1]
Comparison 6: 1-2 [2|2]
Comparison 6: 2-4 [2|2]
Comparison 6: 1-2 [2|2]
Comparison 6: 2-4 [1|2]
-----
Comparison 6: 2-4 [2|1]
Comparison 6: 1-2 [2|2]
Comparison 6: 2-4 [2|2]
Comparison 6: 1-2 [2|2]
Comparison 6: 1-2 [1|2]
Comparison 6: 1-3 [2|2]
Comparison 6: 1-2 [2|2]
Comparison 6: 1-4 [2|2]
Comparison 6: 2-4 [1|2]
Comparison 6: 1-3 [2|2]
Comparison 6: 3-4 [2|2]
Comparison 6: 1-3 [2|2]
Comparison 6: 1-2 [2|1]
Comparison 6: 1-2 [2|2]
Comparison 6: 1-4 [2|2]
Comparison 6: 1-3 [2|2]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 0-3 [1|1]
Comparison 7: 0-3 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 7: 0-2 [1|1]
Comparison 7: 0-2 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 3-4 [1|1]
-----
Comparison 7: 3-4 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 0-2 [1|1]
Comparison 7: 0-2 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 7: 2-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 0-3 [1|1]
Comparison 7: 0-3 [1|1]
Comparison 7: 3-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-3 [1|1]
Comparison 7: 1-2 [1|1]
Comparison 7: 1-4 [1|1]
Comparison 7: 1-2 [1|1]
</code></pre>
http://stackoverflow.com/questions/1534485/newbie-needs-to-know-how-to-parse-a-whole-text-group-like-this/1534730#15347300Answer by Daniel Brückner for Newbie needs to know how to parse a whole text group like thisDaniel Brückner2009-10-07T23:13:13Z2009-10-07T23:13:13Z<p>One solution might be using a regular expression. I quickly made up one, but it might require some additional tuning to fit your exact needs. It works for your example, but might fail for other inputs. The expression is very much tailored to the given example especially in respect to line breaks and comments.</p>
<p><strong>CODE</strong></p>
<pre><code>String input =
@"group ""C_BatTemp"" -- block-group
{
block: ""Constant""
flags: BLOCK|COLLAPSED
}
-- Skipping output Out1
p_untitled_P_real_T_0[1]
{
type: flt(64,IEEE)*
alias: ""Value""
flags: PARAM
}
endgroup -- block-group ""C_BatTemp""";
String pattern = @"^group\W*""(?<varname>[^""]*)""[^{]*{\W*block:\W*""(?<grouptype>[^""]*)""[^}]*}$(\W*--.*$)*\W*(?<baseaddressname>[^[]*)\[(?<addressoffset>[^\]]*)][^{]*{\W*type:\W*(?<vartype>.*)$\W*alias:\W*""(?<alias>[^""]*)""[^}]*}\W*endgroup.*$";
foreach (Match match in Regex.Matches(input.Replace("\r\n", "\n"), pattern, RegexOptions.Multiline))
{
Console.WriteLine(match.Groups["varname"].Value);
Console.WriteLine(match.Groups["grouptype"].Value);
Console.WriteLine(match.Groups["baseaddressname"].Value);
Console.WriteLine(match.Groups["addressoffset"].Value);
Console.WriteLine(match.Groups["vartype"].Value);
Console.WriteLine(match.Groups["vartype"].Value.EndsWith("*"));
Console.WriteLine(match.Groups["alias"].Value);
}
</code></pre>
<p><strong>OUTPUT</strong></p>
<pre><code>C_BatTemp
Constant
p_untitled_P_real_T_0
1
flt(64,IEEE)*
True
Value
</code></pre>
http://stackoverflow.com/questions/1533183/wrapping-an-image-around-3d-object-for-easy-2d-printing/1534118#15341180Answer by Daniel Brückner for Wrapping an image around 3d object for easy 2d printingDaniel Brückner2009-10-07T20:51:17Z2009-10-07T20:51:17Z<p>It is not possible to map an image to an arbitrary surface without distortion. I think it is not possible if "the surface does not consists of straight lines" like for example a cylinder or cone does. The same holds for you print - you cannot wrap a flat printout around an arbitrary surface except it is stretchable or you add (many) cuts until it approximately fits the surface. </p>
http://stackoverflow.com/questions/1532851/how-to-solve-987654321-a-123456789-b-c-a-b-c/1533293#15332936Answer by Daniel Brückner for How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ?Daniel Brückner2009-10-07T18:14:27Z2009-10-07T18:14:27Z<p>This problem is an <a href="http://en.wikipedia.org/wiki/Diophantine%5Fequation" rel="nofollow">Diophantine equation</a>. The <a href="http://en.wikipedia.org/wiki/Hilbert%27s%5Ftenth%5Fproblem" rel="nofollow">tenth</a> of <a href="http://en.wikipedia.org/wiki/Hilbert%27s%5Fproblems" rel="nofollow">Hilbert's twenty-three problems</a> is finding an algorithm that decides if a Diophantine equation has a solution. In 1970 <a href="http://en.wikipedia.org/wiki/Yuri%5FMatiyasevich" rel="nofollow">Yuri Matiyasevich</a> proved that this is in general an <a href="http://en.wikipedia.org/wiki/Undecidable%5Fproblem" rel="nofollow">undecidable problem</a>. So this problem might be <em>very</em> hard to solve...</p>
http://stackoverflow.com/questions/1532728/in-sql-server-2008-what-default-date-should-i-use-if-i-dont-want-it-to-be-null/1532753#15327538Answer by Daniel Brückner for In SQL Server 2008, what default date should I use if I don't want it to be null?Daniel Brückner2009-10-07T16:35:05Z2009-10-07T17:10:28Z<p>You should use NULL - this is what it is for; unknown or uninitialized values.</p>
<p>As mentioned in the comments there is no point for making <code>DateCreated</code> nullable. Some people even argue that a good and highly normalized database design should not allow null values at all - see for example this <a href="http://www.databasedesign-resource.com/null-values-in-a-database.html" rel="nofollow">article</a> - and I tend to agree.</p>
http://stackoverflow.com/questions/1530334/vlookup-in-datagridviews-vb-net/1531863#15318631Answer by Daniel Brückner for VLookup in Datagridviews (VB.NET)Daniel Brückner2009-10-07T14:07:37Z2009-10-07T14:07:37Z<p>It is usually not a good idea to optimize code for performance until you know that you really have performance problems. But in this case I would use another solution, too, to avoid an <code>O(n * m)</code> operation.</p>
<p>I suggest to insert all items from one list into a hash set - this will be <code>O(n)</code> if you specify a large enough initial size and avoid resizing the hash set this way. Then just perform a look up in the hash set for each item in the second list in <code>O(m)</code>. This way you get <code>O(n * m)</code> down to <code>O(n + m)</code>.</p>
http://stackoverflow.com/questions/1528266/list-of-valid-resolutions-for-a-given-screen/1528327#15283270Answer by Daniel Brückner for List of valid resolutions for a given Screen?Daniel Brückner2009-10-06T21:59:43Z2009-10-06T22:29:41Z<p>I think it should be possible to get the information using <a href="http://en.wikipedia.org/wiki/Windows%5FManagement%5FInstrumentation" rel="nofollow">Windows Management Instrumentation (WMI)</a>. WMI is accessible from .NET using the classes from them <a href="http://msdn.microsoft.com/en-us/library/system.management.aspx" rel="nofollow">System.Management</a> namespace.</p>
<p>A solution will look similar to the following. I don't know WMI well and could not immediately find the information you are looking for, but I found the WMI class for the resolutions supported by the video card. The code requires referencing System.Management.dll and importing the System.Management namespace.</p>
<pre><code>var scope = new ManagementScope();
var query = new ObjectQuery("SELECT * FROM CIM_VideoControllerResolution");
using (var searcher = new ManagementObjectSearcher(scope, query))
{
var results = searcher.Get();
foreach (var result in results)
{
Console.WriteLine(
"caption={0}, description={1} resolution={2}x{3} " +
"colors={4} refresh rate={5}|{6}|{7} scan mode={8}",
result["Caption"], result["Description"],
result["HorizontalResolution"],
result["VerticalResolution"],
result["NumberOfColors"],
result["MinRefreshRate"],
result["RefreshRate"],
result["MaxRefreshRate"],
result["ScanMode"]);
}
}
</code></pre>
http://stackoverflow.com/questions/1521765/creating-a-polygon-shape-from-a-2d-tile-array/1521864#15218641Answer by Daniel Brückner for Creating a polygon shape from a 2d tile arrayDaniel Brückner2009-10-05T19:14:11Z2009-10-05T20:33:43Z<p>You will have to clarify your desired result. Something like the following</p>
<pre><code>██ ██
██
██ ██
</code></pre>
<p>given</p>
<pre><code>1 0 1
0 1 0
1 0 1
</code></pre>
<p>as the input? If yes, this seems quite trivial - why don't you just generate one quadrilateral per array entry if there is a one, otherwise nothing?</p>
<p>You can solve this problem using a simple state machine. The current state consist of the current position (x,y) and the current direction - either left (L), right (R), up (U), or down (D). The 'X' is the current position and there are eight neighbors that may control the state change.</p>
<pre><code>0 1 2
7 X 3
6 5 4
</code></pre>
<p>Then just follow the following rules - in state X,Y,D check the two given fields and change the state accordingly.</p>
<pre><code>X,Y,R,23=00 => X+1,Y,D
X,Y,R,23=01 => X+1,Y,R
X,Y,R,23=10 => X+1,Y,U
X,Y,R,23=11 => X+1,Y,U
X,Y,D,56=00 => X,Y+1,L
X,Y,D,56=01 => X,Y+1,D
X,Y,D,56=10 => X,Y+1,R
X,Y,D,56=11 => X,Y+1,R
...
</code></pre>
http://stackoverflow.com/questions/1521778/is-there-an-post-drag-and-drop-event/1521803#15218031Answer by Daniel Brückner for Is there an post Drag and Drop event?Daniel Brückner2009-10-05T19:02:48Z2009-10-05T19:02:48Z<p>You supposed to perform post-drop operation on the drag source in the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.mousemove.aspx" rel="nofollow"><code>MouseMove</code></a> event handler after the call to <a href="http://msdn.microsoft.com/de-de/library/system.windows.forms.control.dodragdrop.aspx" rel="nofollow"><code>DoDragDrop()</code></a> returned and on the drop target in the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.dragdrop.aspx" rel="nofollow"><code>DragDrop</code></a> event handler.</p>
http://stackoverflow.com/questions/1903702/associate-file-type-and-icon/1903735#1903735Comment by Daniel Brückner on Associate File Type and IconDaniel Brückner2009-12-17T11:05:51Z2009-12-17T11:05:51ZThe icons are (usually) embedded in your executable. So you have to specify the path and name of your executable file and an index for the icon. The index is used to select one embedded icon if there are several. If you have only one, it is just zero. You could try something like that. myProgramAssociationInfo.SetDefaultIcon(new ProgramIcon(new Uri(Assembly.GetEntryAssembly().CodeBase).AbsolutePath))http://stackoverflow.com/questions/1903333/best-linq2sql-equivalent-of-isnullmaxid/1903407#1903407Comment by Daniel Brückner on Best Linq2Sql equivalent of IsNull(Max(id))Daniel Brückner2009-12-14T20:59:31Z2009-12-14T20:59:31ZI checked it with LINQPad and it worked. It throws without the cast to nullable int.http://stackoverflow.com/questions/921180/c-round-up/921200#921200Comment by Daniel Brückner on C# Round up Daniel Brückner2009-11-20T14:15:07Z2009-11-20T14:15:07Zseemingly simple things may become.http://stackoverflow.com/questions/921180/c-round-up/921200#921200Comment by Daniel Brückner on C# Round up Daniel Brückner2009-11-20T12:12:08Z2009-11-20T12:12:08Zlogic and pushed the bug around. Here I made the next mistakes; as Eric already mentioned I did not really analyze the bug and just did the first thing that seemed right. And I still did not use VisualStudio. Okay, I was in a hurry and did not spend more then five minutes on the "fix", but this should not be an excuse. After I Eric repeatedly pointed out the bug, I fired up VisualStudio and found the real problem. The fix using Sign() makes the thing even more unreadable and turns it into code you don't really want to maintain. I learned my lesson and will no longer underestimate how trickyhttp://stackoverflow.com/questions/921180/c-round-up/921200#921200Comment by Daniel Brückner on C# Round up Daniel Brückner2009-11-20T12:05:17Z2009-11-20T12:05:17ZThis answer is probably the worst thing I wrote on SO ... and it is now linked by Eric's blog... Well, my intention was not to give a readable solution; I was really locking for a short and fast hack. And to defend my solution again, I got the idea right the first time, but did not think about overflows. It was obviously my mistake to post the code without writing and testing it in VisualStudio. The "fixes" are even worse - I did not realize that it was an overflow problem and thought I made an logical mistake. In consequence the first "fixes" did not change anything; I just inverted the http://stackoverflow.com/questions/1763649/running-time-of-minimum-spanning-tree-prim-method/1765031#1765031Comment by Daniel Brückner on Running time of minimum spanning tree? ( Prim method )Daniel Brückner2009-11-20T11:07:39Z2009-11-20T11:07:39ZThe priority of each vertex is the cost of connecting the vertex with the current spanning tree - this is the minimum weight of all edges connecting the vertex with the current tree or infinity if there is no edge. All this values are initialized with infinity and updated each time a vertex is moved from the queue to the tree.http://stackoverflow.com/questions/1765579/fast-algorithm-for-searching-for-substrings-in-a-stringComment by Daniel Brückner on Fast algorithm for searching for substrings in a stringDaniel Brückner2009-11-19T18:53:24Z2009-11-19T18:53:24ZGiven the details a FSM is probably your best choice.http://stackoverflow.com/questions/1746941/objectcontext-refresh/1747003#1747003Comment by Daniel Brückner on ObjectContext.Refresh() ???Daniel Brückner2009-11-18T15:42:21Z2009-11-18T15:42:21ZThis just saved me many lines of code walking the object graph myself.http://stackoverflow.com/questions/1639244/common-uses-and-best-practices-for-application-domains-in-net/1639274#1639274Comment by Daniel Brückner on Common uses and best practices for application domains in .NET?Daniel Brückner2009-10-28T19:49:46Z2009-10-28T19:49:46ZIt just states faults, not unhandled exceptions. Maybe I should create I question asking for an example...http://stackoverflow.com/questions/1639244/common-uses-and-best-practices-for-application-domains-in-net/1639274#1639274Comment by Daniel Brückner on Common uses and best practices for application domains in .NET?Daniel Brückner2009-10-28T19:33:39Z2009-10-28T19:33:39ZI am not talking about controlled termination of an application domain - but there is no way to prevent process termination if any thread causes an unhandled exception. (It would be great if one could proof me wrong, but I investigated the possibilities of isolating parts of an application against each other quite in depth for a current project in order to improve the reliability of the server in case of failures in subprocesses, hence I really doubt I missed a solution.)http://stackoverflow.com/questions/1639244/common-uses-and-best-practices-for-application-domains-in-net/1639274#1639274Comment by Daniel Brückner on Common uses and best practices for application domains in .NET?Daniel Brückner2009-10-28T18:57:36Z2009-10-28T18:57:36ZI am quite sure loading a buggy plug-in into a separate application domain cannot prevent the plug-in from crashing your application - an unhandled exception will bring the application domain down and in consequence terminate the whole process.http://stackoverflow.com/questions/1636477/linq-one-to-many-insert-when-many-already-exists/1636589#1636589Comment by Daniel Brückner on Linq one to many insert when many already existsDaniel Brückner2009-10-28T11:26:39Z2009-10-28T11:26:39ZBy the way ... if your way from the question would work, you would always lose all the entities already in the collection when you assign a new collection - certainly not something you want to do in most cases.http://stackoverflow.com/questions/1636477/linq-one-to-many-insert-when-many-already-exists/1636589#1636589Comment by Daniel Brückner on Linq one to many insert when many already existsDaniel Brückner2009-10-28T11:18:00Z2009-10-28T11:18:00ZYou can of course write an extension method AddRange taking an EntityCollection<T> and an IEnumerable<T> that adds all the items at once.http://stackoverflow.com/questions/1633014/good-way-to-concatenate-string-representations-of-objects/1633035#1633035Comment by Daniel Brückner on Good way to concatenate string representations of objects?Daniel Brückner2009-10-27T19:45:04Z2009-10-27T19:45:04ZI don't get the first point - if it would be an instance method, checking this for null does not make sense, but you have to check the sequence if it is an extension method because it might get called on a null reference.http://stackoverflow.com/questions/1528266/list-of-valid-resolutions-for-a-given-screen/1528327#1528327Comment by Daniel Brückner on List of valid resolutions for a given Screen?Daniel Brückner2009-10-12T17:35:24Z2009-10-12T17:35:24ZYou will have to search through the available WMI classes ... I am quite confident that there is a class providing the information you are looking for. Go to <a href="http://msdn.microsoft.com/en-us/library/aa394554(VS.85).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> and search through the classes.