User ICR - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:55:31Z http://stackoverflow.com/feeds/user/214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1085/free-ocr-library 19 Free OCR library ICR 2008-08-04T08:24:46Z 2009-11-15T09:12:01Z <p>Does anyone know of a good free or cheap (under £100/$200) OCR library? It needs to run on Windows and preferably be a .NET library, though a COM interface is fine.</p> http://stackoverflow.com/questions/1545168/scala-unexpectedly-not-being-able-to-ascertain-type-for-expanded-function 3 Scala unexpectedly not being able to ascertain type for expanded function ICR 2009-10-09T17:49:26Z 2009-10-10T09:36:47Z <p>Why, in Scala, given:</p> <pre><code>a = List(1, 2, 3, 4) def f(x : String) = { x } </code></pre> <p>does</p> <pre><code>a.map(_.toString) </code></pre> <p>work, but</p> <pre><code>a.map(f(_.toString)) </code></pre> <p>give the error</p> <pre><code>missing parameter type for expanded function ((x$1) =&gt; x$1.toString) </code></pre> http://stackoverflow.com/questions/1541053/adding-registry-key-in-c-shows-when-i-read-it-back-but-not-in-regedit 1 Adding registry key in C# shows when I read it back, but not in regedit ICR 2009-10-08T23:18:29Z 2009-10-08T23:31:28Z <p>I am adding a registry key using the following code:</p> <pre><code>var key = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(key); </code></pre> <p>Within my code I can read back the value find, even in between runs. However, the key never shows in regedit and the other program that should be reading the key can't see it.</p> <p>The program is running on Vista with elevated priviledges.</p> http://stackoverflow.com/questions/1467964/how-do-i-iterate-controls-in-a-windows-form-app/1470514#1470514 1 Answer by ICR for How do I Iterate controls in a windows form app? ICR 2009-09-24T09:02:34Z 2009-09-24T09:02:34Z <p>Personally I prefer to create the controls programatically and then put them in a collection. i.e.</p> <pre><code>IList&lt;TextBox&gt; textBoxes = new List&lt;TextBox&gt;(); … for (int i = 0; i &lt; 12; i += 1) { TextBox textBox = new TextBox(); textBox.Position = new Point(FormMargin, FormMargin + (i * (textBox.Height + TextBoxPadding))); this.Controls.Add(textBox); this.textBoxes.Add(textBox); } </code></pre> <p>You can then just itterate over textBoxes to programatically add them. I find this scales better when you have several different groups of textboxes you need to do this with.</p> http://stackoverflow.com/questions/1453812/how-to-avoid-a-stack-overflow/1455893#1455893 0 Answer by ICR for How to avoid a stack overflow? ICR 2009-09-21T17:59:47Z 2009-09-21T17:59:47Z <p>Every time you call a method foo from method bar, bar is added to the call stack. The call stack is used to keep track of where the code was before the method was called so it can return there when foo is done.</p> <p>The following recursive function</p> <pre><code>int Factorial(int n) { if (n == 0) { return 1; } return n * Factorial(n - 1); } </code></pre> <p>after several recursions of the call Factorial(5) the call stack would look like this:</p> <pre><code>Factorial(5) -&gt; Factorial(4) -&gt; Factorial(3) -&gt; Factorial(2) -&gt; Factorial(1) </code></pre> <p>At this point n is 1, and so the function stops calling the recursive case and instead returns 1. The program then starts winding back up the call stack and the whole thing returns 120.</p> <p>Without the call stack the program wouldn't know where to go back to when it had finished executing a method.</p> <p>Now suppose that base case wasn't there, and it was just looked like this:</p> <pre><code>int Factorial(int n) { return n * Factorial(n - 1); } </code></pre> <p>After several recursions of the call Factorial(5) the call stack would look like this:</p> <pre><code>Factorial(5) -&gt; Factorial(4) -&gt; Factorial(3) -&gt; Factorial(2) -&gt; Factorial(1) -&gt; Factorial(0) -&gt; Factorial(-1) -&gt; Factorial(-2) -&gt; Factorial(-3) -&gt; Factorial(-4) -&gt; Factorial(-5) -&gt; Factorial(-6) -&gt; Factorial(-7) -&gt; Factorial(-8) -&gt; Factorial(-9) -&gt; Factorial(-10) -&gt; Factorial(-11) -&gt; Factorial(-12) -&gt; Factorial(-13) -&gt; Factorial(-14) -&gt; Factorial(-15) etc… </code></pre> <p>Because there is no point at which the code stops calling itself it will carry on forever, and the call stack will grow and grow and grow taking up more and more memory until it exceeds the memory it has been allocated and the StackOverflow exception is thrown.</p> <p>There are 2 ways to stop this from happening, the best depends on the situation.</p> <p>1 Provide a base case. Make sure there is some condition that is eventually reached which stops the function from calling itself. In the Factorial case it's that n == 1, but it could be that a certain amount of time has passed, that it has recursed a certain number of times, that some result of some computation is within some bounds, whatever. As long as it stops recusing before the stack is too big.</p> <p>2 Remove the recursion and re-write it without. Any recursive algorithm can be re-written as a non-recursive algorithm. It may not be as clean and elegant, but it can be done. In the factorial argument it may be something like:</p> <pre><code>int Factorial(int n) { int result = 1; for (int i = 0; i &lt; n; i += 1) { result *= n; } return result; } </code></pre> <p>If the aim is to continually run the same function again and again, then you can re-write the recursive</p> <pre><code>void Foo() { // Some code Foo(); } </code></pre> <p>as</p> <pre><code>void Foo() { while (true) { // Some code } } </code></pre> http://stackoverflow.com/questions/1455189/c-ref-modifier-for-reference-types/1455685#1455685 2 Answer by ICR for c# - ref modifier for ...reference types ICR 2009-09-21T17:18:49Z 2009-09-21T17:18:49Z <pre><code>p.SomeValue = "ccc"; </code></pre> <p>is saying:</p> <ul> <li>Get the object that p is a reference to</li> <li><p>Set the value of the property SomeValue on that object to "ccc"</p> <p>p = null;</p></li> </ul> <p>is saying:</p> <ul> <li>Change p to, instead of referring to the object it used to, now refer to null.</li> </ul> <p>It is not saying change the object that p refers to to null, but that the local variable p should now refer to null.</p> <p>By default, when you pass an argument of type A such as in the method invocation "Foo(p)" you are not passing the object that is referenced by p, or even the reference p, but a reference to the object referenced by p. They reference the same object, but they are not the same reference. i.e. the reference p in "public static void Foo(A p)" is not the same reference as the p in "Foo(p)", but they do reference the same object.</p> <p>You can alter this behaviour by using a ref parameter instead. This changes it so that they <em>are</em> the same reference, and altering the value of one alters the value of the other.</p> http://stackoverflow.com/questions/1454546/unexplained-delay-when-assigning-a-string-to-an-splistitem-field/1454601#1454601 -1 Answer by ICR for Unexplained delay when assigning a string to an SPListItem field ICR 2009-09-21T13:50:16Z 2009-09-21T13:50:16Z <p>It may be a difference between Release and Debug builds, or the fact it has the debugger attatched. Try changing to a Release build, and if that doesn't work try running it without the debugger (Ctrl+F5 in Visual Studio)</p> http://stackoverflow.com/questions/1454490/when-to-make-a-form-flash-and-stop-flashing/1454569#1454569 0 Answer by ICR for When to make a form flash and stop flashing? ICR 2009-09-21T13:43:10Z 2009-09-21T13:43:10Z <p>Well Focused should be the property to check, so you need to try and work out why that is always returning false.</p> <p>As for what event to listen to, probably the GotFocus event, though that may not work until you can work out what is wrong with the Focused property.</p> http://stackoverflow.com/questions/1454215/dropdown-of-font-names-in-c-net/1454476#1454476 2 Answer by ICR for Dropdown of Font names in C#.Net ICR 2009-09-21T13:20:03Z 2009-09-21T13:20:03Z <pre><code>foreach (FontFamily fontFamily in FontFamily.Families) { if (fontFamily.IsStyleAvailable(FontStyle.Regular)) { fontComboBox.Items.Add(fontFamily.Name + " (Regular)"); } if (fontFamily.IsStyleAvailable(FontStyle.Bold)) { fontComboBox.Items.Add(fontFamily.Name + " (Bold)"); } if (fontFamily.IsStyleAvailable(FontStyle.Italic)) { fontComboBox.Items.Add(fontFamily.Name + " (Italic)"); } if (fontFamily.IsStyleAvailable(FontStyle.Underline)) { fontComboBox.Items.Add(fontFamily.Name + " (Underline)"); } if (fontFamily.IsStyleAvailable(FontStyle.Strikeout)) { fontComboBox.Items.Add(fontFamily.Name + " (Strikeout)"); } } </code></pre> http://stackoverflow.com/questions/1452122/c-class-design-without-using-internal-or-static/1454403#1454403 0 Answer by ICR for C# class design without using "Internal" or "Static"? ICR 2009-09-21T13:02:03Z 2009-09-21T13:02:03Z <p>Could you not use suggestion 2 but with protected instead of internal?</p> http://stackoverflow.com/questions/1452276/complex-number-notation/1454364#1454364 1 Answer by ICR for Complex number notation ICR 2009-09-21T12:52:27Z 2009-09-21T12:52:27Z <p>Most of the languages I can find that have a complex number builtin type (such as Python and Lisp) use something like:</p> <pre><code>c{r, i} </code></pre> http://stackoverflow.com/questions/1453848/c-error-no-overload-for-method-getdata-takes-1-arguments/1454228#1454228 0 Answer by ICR for C# Error 'No overload for method 'getData' takes '1' arguments ICR 2009-09-21T12:15:20Z 2009-09-21T12:15:20Z <p>This generally indicates that it's not referencing the method you thought it was, but instead a different one. You can generally find out what method that is in Visual Studio by right clicking the method call and selecting "Go to definition". This should help work out why it's calling the one it is and not the one you expect.</p> http://stackoverflow.com/questions/1453948/reading-numbers-from-string-in-c/1454055#1454055 0 Answer by ICR for Reading numbers from string in C# ICR 2009-09-21T11:30:19Z 2009-09-21T11:30:19Z <p>The following should extract the two numbers and chance of precipitation, as well as the units that are used (for culturally dependent units).</p> <pre><code>(?&lt;lo&gt;\d+°.).*?(?&lt;hi&gt;\d+°.).*?(?&lt;precipitation&gt;\d+) </code></pre> <p>If you don't want units extracted, then you can use</p> <pre><code>(?&lt;lo&gt;\d+)°.*?(?&lt;hi&gt;\d+)°.*?(?&lt;precipitation&gt;\d+) </code></pre> http://stackoverflow.com/questions/1452313/why-null-myvar-instead-of-myvar-null/1453486#1453486 1 Answer by ICR for Why null == myVar instead of myVar == null? ICR 2009-09-21T08:52:42Z 2009-09-21T08:52:42Z <p>As others have mentioned, it's a defensive tactic against problems that may arise from the fact that in C and some C derivatives (including C#) an assignment expression evaluates to the value of that assignment. This is what allows you to do:</p> <pre><code>if (a = true) { /* This will always get done, as "a = true" evals to true */ } </code></pre> <p>and</p> <pre><code>int a = b = c = d = 10; </code></pre> <p>As assignment is right associative this is effectively</p> <pre><code>int a = (b = (c = (d = 10))); </code></pre> <p>where each expression inside a brace pair will evaluate to the value of the assignment, which is in this case 10 and a, b, c and d will thus all be 10.</p> <p>To avoid potential mistakes -- mixing up the assignment and equality operators -- some programmers prefer to always put the constant on the left, as if the assignment operator is accidentally used the compiler will complain that you cannot assign to a constant.</p> <p>This is, however, less of an issue in C# for two reasons. Firstly, unlike C, C# does not allow arbitrary values to be interpreted as a boolean value.</p> <p>This was necessary in C as it had no true boolean type, it just relied on the interpretation of other values like integers (where 0 is false and non-zero is true) or pointers (where NULL is false). This meant you could then do something like</p> <pre><code>if (10) { /* This will always get done */ } if (0) { /* This will never get done */ } if (p) { /* This will get done is p is not null */ } if (NULL) { /* This will never get done */ } </code></pre> <p>However, because C# does not allow arbitrary expressions to be interpreted as a boolean these will not work in C#. It also means that</p> <pre><code>if (a = 10) { } </code></pre> <p>will not compile in C#, as the expression "a = 10" evaluates to the value of the expression, 10, which cannot then be interpreted as the required boolean value.</p> <p>The second reason it is less of an issue is that in the, now much smaller, percentage of cases where the result of the assignment can be interpreted as a boolean value the compiler issues a warning to make sure you really did mean to do that.</p> <p>The warning can be suppressed with</p> <pre><code>#pragma warning disable 665 </code></pre> <p>However, the presence of such code is often a bad code smell and is probably best dealt with by refactoring to make the code clearer.</p> http://stackoverflow.com/questions/1443886/how-can-i-hide-a-base-class-public-property-in-the-derived-class/1448457#1448457 0 Answer by ICR for How can I hide a base class public property in the derived class ICR 2009-09-19T12:25:20Z 2009-09-19T12:25:20Z <p>Vadim's response reminded me of how MS achieve this in the Framework in certain places. The general strategy is to hide the member from Intellisense using the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx" rel="nofollow">EditorBrowsable attribute</a>. (N.B. This only hides it if it is in another assembly) Whilst it does not stop anyone from using the attribute, and they can see it if they cast to the base type (see my previous explination) it makes it far less discoverable as it doesn't appear in Intellisense and keeps the interface of the class clean.</p> <p>It should be used sparingly though, only when other options like restructuring the inheritance hierarchy would make it a <em>lot</em> more complex. It's a last resort rather than the first solution to think of.</p> http://stackoverflow.com/questions/1443886/how-can-i-hide-a-base-class-public-property-in-the-derived-class/1444660#1444660 2 Answer by ICR for How can I hide a base class public property in the derived class ICR 2009-09-18T13:50:37Z 2009-09-18T13:50:37Z <p>I'm going to attempt to explain with examples why this is a bad idea, rather than using cryptic terms.</p> <p>Your proposal would be to have code that looks like this:</p> <pre><code>public class Base { public int Item1 { get; set; } public int Item2 { get; set; } } public class WithHidden : Base { hide Item1; // Assuming some new feature "hide" in C# } public class WithoutHidden : Base { } </code></pre> <p>This would then make the following code invalid:</p> <pre><code>WithHidden a = new WithHidden(); a.Item1 = 10; // Invalid - cannot access property Item1 int i = a.Item1; // Invalid - cannot access property Item1 </code></pre> <p>And that would be just what you wanted. However, suppose we now have the following code:</p> <pre><code>Base withHidden = new WithHidden(); Base withoutHidden = new WithoutHidden(); SetItem1(withHidden); SetItem1(withoutHidden); public void SetItem1(Base base) { base.Item1 = 10; } </code></pre> <p>The compiler doesn't know what runtime type the argument base in SetItem1 will be, only that it is at least of type Base (or some type derived from Base, but it can't tell which -- it may be obvious looking at the code snippet, but more complex scenarios make it practically impossible).</p> <p>So the compiler will not, in a large percentage of the cases, be able to give a compiler error that Item1 is in fact inaccessible. So that leaves the possibility of a runtime check. When you try and set Item1 on an object which is in fact of type WithHidden it would throw an exception.</p> <p>Now accessing any member, any property on any non-sealed class (which is most of them) may throw an exception because it was actually a derived class which hid the member. Any library which exposes any non-sealed types would have to write defensive code when accessing <em>any</em> member just because someone may have hidden it.</p> <p>A potential solution to this is to write the feature such that only members which declare themselves hideable can be hidden. The compiler would then disallow any access to the hidden member on variables of that type (compile time), and also include runtime checks so that a FieldAccessException is thrown if it is cast to the base type and tried to be accessed from that (runtime).</p> <p>But even if the C# developers did go to the huge trouble and expense of this feature (remember, features are <em>expensive</em>, especially in language design) defensive code still has to be written to avoid the problems of potential FieldAccessExceptions being thrown, so what advantage over reorganising your inheritance hierarchy have you gained? With the new member hiding feature there would be a huge number of potential places for bugs to creep into your application and libraries, increasing development and testing time.</p> http://stackoverflow.com/questions/1061013/why-are-linq-extensions-written-in-a-very-difficult-to-read-way/1061029#1061029 2 Answer by ICR for Why are LINQ extensions written in a very difficult to read way? ICR 2009-06-29T23:12:34Z 2009-06-29T23:12:34Z <p>Identifiers starting with &lt;> aren't valid C# identifiers, so I suspect they use them to mangle the names without fear of conflict, as no identifier in the C# code could be the same.</p> <p>As to why it's hard to read, I suspect that it's more down to the fact it's easy to generate.</p> http://stackoverflow.com/questions/1061019/looking-at-location-with-google-earth-api 0 Looking at location with Google Earth API ICR 2009-06-29T23:10:14Z 2009-06-29T23:10:14Z <p>I am trying to use the Google Earth API to create a simple view of the globe with a search field in which the user can type a location. When they hit go, the globe will zoom in on the location they typed in.</p> <p>I would like the view to be looking straight down on the location they specified. I have tried the following code:</p> <pre><code>var lookAt = ge.createLookAt(''); lookAt.set(point.y, point.x, 600, ge.ALTITUDE_RELATIVE_TO_GROUND, 0, 00, 0); ge.getView().setAbstractView(lookAt); </code></pre> <p>But this always goes to slightly the wrong location,</p> http://stackoverflow.com/questions/901885/alpha-transparency-with-particle-effects-in-opengl 0 Alpha transparency with particle effects in OpenGL ICR 2009-05-23T16:38:49Z 2009-05-25T15:18:07Z <p>I have a simple particle effect in OpenGL using GL_POINTS. The following is called, being passed particles in order from the particle furthest from the camera first to the one nearest the camera last:</p> <pre><code>void draw_particle(particle* part) { /* The following is how the distance is calculated when ordering. * GLfloat distance = sqrt(pow(get_camera_pos_x() - part-&gt;pos_x, 2) + pow(get_camera_pos_y() - part-&gt;pos_y, 2) + pow(get_camera_pos_z() - part-&gt;pos_z, 2)); */ static GLfloat quadratic[] = {0.005, 0.01, 1/600.0}; glPointParameterfvARB(GL_POINT_DISTANCE_ATTENUATION_ARB, quadratic); glPointSize(part-&gt;size); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_POINT_SPRITE_ARB); glEnable(GL_TEXTURE_2D); glBegin(GL_POINTS); glColor4f(part-&gt;r, part-&gt;g, part-&gt;b, part-&gt;a); glVertex3f(part-&gt;pos_x, part-&gt;pos_y, part-&gt;pos_z); glEnd(); glDisable(GL_BLEND); glDisable(GL_POINT_SPRITE_ARB); } </code></pre> <p>However, there is some artifacting when rendering as can be seen in the following effect:<img src="http://img199.imageshack.us/img199/9574/particleeffect.png" alt="artifacted image" /></p> <p>The problems go away if I disable depth testing, but I need the effects to be able to interact with other elements of the scene, appearing in front of and behind elements of the same GL_TRIANGLE_STRIP depending on depth.</p> http://stackoverflow.com/questions/847809/how-can-i-write-a-generic-container-class-that-implements-a-given-interface-in-c/848873#848873 2 Answer by ICR for How can I write a generic container class that implements a given interface in C#? ICR 2009-05-11T16:19:20Z 2009-05-11T16:19:20Z <p>It's not as clean an interface as the reflection based solution, but a very simple and flexible solution is to create a ForAll method like so:</p> <pre><code>static void ForAll&lt;T&gt;(this IEnumerable&lt;T&gt; items, Action&lt;T&gt; action) { foreach (T item in items) { action(item); } } </code></pre> <p>And can be called like so:</p> <pre><code>arr.ForAll(x =&gt; x.Start()); </code></pre> http://stackoverflow.com/questions/566941/three-columnm-layout-with-multiple-divs-in-the-left-and-right-columns 1 Three columnm layout with multiple divs in the left and right columns ICR 2009-02-19T20:12:12Z 2009-02-19T22:12:05Z <p>I have some HTML which looks like this:</p> <pre><code>&lt;body&gt; &lt;div id="panel1" class="panel"&gt; Panel 1 &lt;/div&gt; &lt;div id="panel2" class="panel"&gt; Panel 2 &lt;/div&gt; &lt;div id="panel3" class="panel"&gt; Panel 3 &lt;/div&gt; &lt;div id="panel4" class="panel"&gt; Panel 4 &lt;/div&gt; &lt;div id="panel5" class="panel"&gt; Panel 5 &lt;/div&gt; &lt;div id="panel6" class="panel"&gt; Panel 6 &lt;/div&gt; &lt;div id="panel7" class="panel"&gt; Panel 7 &lt;/div&gt; &lt;div id="contentheader"&gt; Header &lt;/div&gt; &lt;div id="content"&gt; Content &lt;/div&gt; &lt;/body&gt; </code></pre> <p>What I would like is for some of the panels (let's say 1-4) to be floated on the left, the others (5-7) to be floated on the right and the header and content in between, ideally without having to wrap the left and right panels in a wrapper div.</p> http://stackoverflow.com/questions/548902/back-button-not-rendering 1 Back button not rendering ICR 2009-02-14T10:34:53Z 2009-02-14T10:42:43Z <p>I have an overlay that I want to slide in my cocoa-touch application. I have created the view controller for it and the corresponding nib. The nib just has a View with a text field in it.</p> <p>I move to the view using:</p> <pre><code>[[self navigationController] pushViewController:[[[AddPlayerViewController alloc] initWithNibName:@"AddPlayerViewController" bundle:nil] autorelease] animated: YES]; </code></pre> <p>This works fine and the view slides in. However, the back/cancel button doesn't render. I can click there and it goes back, but nothing is drawn.</p> http://stackoverflow.com/questions/504403/why-cant-this-be-optimized/504463#504463 4 Answer by ICR for Why can't this be optimized? ICR 2009-02-02T19:07:30Z 2009-02-02T19:07:30Z <p>If you compile into debug mode or begin the process with a debugger attatched (though you can add one later) then a large class of JIT optimisations, including inlining, won't happen.</p> <p>Try re-running your tests by compiling it in Release mode and then running it without a debugger attatched (Ctrl+F5 in VS) and see if you see the optimisations you expected.</p> http://stackoverflow.com/questions/501090/c-how-do-i-convert-a-decimal-to-an-int/501113#501113 3 Answer by ICR for C# How do I convert a decimal to an int? ICR 2009-02-01T16:41:44Z 2009-02-01T16:48:59Z <pre><code>int i = (int)d; </code></pre> <p>will give you the number rounded down.</p> <p>If you want to round to the nearest even number (i.e. >.5 will round up) you can use</p> <pre><code>int i = (int)Math.Round(d, MidpointRounding.ToEven); </code></pre> <p>In general you can cast between all the numerical types in C#. If there is no information that will be lost during the cast you can do it implicitly:</p> <pre><code>int i = 10; decimal d = i; </code></pre> <p>though you can still do it explicitly if you wish:</p> <pre><code>int i = 10; decimal d = (decimal)i; </code></pre> <p>However, if you are going to be losing information through the cast you must do it explicitly (to show you are aware you may be losing information):</p> <pre><code>decimal d = 10.5M; int i = (int)d; </code></pre> <p>Here you are losing the ".5". This may be fine, but you must be explicit about it and make an explicit cast to show you know you may be losing the information.</p> http://stackoverflow.com/questions/111345/getting-image-dimensions-without-reading-the-entire-file/112711#112711 6 Answer by ICR for Getting image dimensions without reading the entire file ICR 2008-09-22T00:55:05Z 2009-02-01T16:28:57Z <p>Your best bet as always is to find a well tested library. However, you said that is difficult, so here is some dodgy largely untested code that should work for a fair number of cases:</p> <pre><code>using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; namespace ImageDimensions { public static class ImageHelper { const string errorMessage = "Could not recognise image format."; private static Dictionary&lt;byte[], Func&lt;BinaryReader, Size&gt;&gt; imageFormatDecoders = new Dictionary&lt;byte[], Func&lt;BinaryReader, Size&gt;&gt;() { { new byte[]{ 0x42, 0x4D }, DecodeBitmap}, { new byte[]{ 0x47, 0x49, 0x46, 0x38, 0x37, 0x61 }, DecodeGif }, { new byte[]{ 0x47, 0x49, 0x46, 0x38, 0x39, 0x61 }, DecodeGif }, { new byte[]{ 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }, DecodePng }, { new byte[]{ 0xff, 0xd8 }, DecodeJfif }, }; /// &lt;summary&gt; /// Gets the dimensions of an image. /// &lt;/summary&gt; /// &lt;param name="path"&gt;The path of the image to get the dimensions of.&lt;/param&gt; /// &lt;returns&gt;The dimensions of the specified image.&lt;/returns&gt; /// &lt;exception cref="ArgumentException"&gt;The image was of an unrecognised format.&lt;/exception&gt; public static Size GetDimensions(string path) { using (BinaryReader binaryReader = new BinaryReader(File.OpenRead(path))) { try { return GetDimensions(binaryReader); } catch (ArgumentException e) { if (e.Message.StartsWith(errorMessage)) { throw new ArgumentException(errorMessage, "path", e); } else { throw e; } } } } /// &lt;summary&gt; /// Gets the dimensions of an image. /// &lt;/summary&gt; /// &lt;param name="path"&gt;The path of the image to get the dimensions of.&lt;/param&gt; /// &lt;returns&gt;The dimensions of the specified image.&lt;/returns&gt; /// &lt;exception cref="ArgumentException"&gt;The image was of an unrecognised format.&lt;/exception&gt; public static Size GetDimensions(BinaryReader binaryReader) { int maxMagicBytesLength = imageFormatDecoders.Keys.OrderByDescending(x =&gt; x.Length).First().Length; byte[] magicBytes = new byte[maxMagicBytesLength]; for (int i = 0; i &lt; maxMagicBytesLength; i += 1) { magicBytes[i] = binaryReader.ReadByte(); foreach(var kvPair in imageFormatDecoders) { if (magicBytes.StartsWith(kvPair.Key)) { return kvPair.Value(binaryReader); } } } throw new ArgumentException(errorMessage, "binaryReader"); } private static bool StartsWith(this byte[] thisBytes, byte[] thatBytes) { for(int i = 0; i &lt; thatBytes.Length; i+= 1) { if (thisBytes[i] != thatBytes[i]) { return false; } } return true; } private static short ReadLittleEndianInt16(this BinaryReader binaryReader) { byte[] bytes = new byte[sizeof(short)]; for (int i = 0; i &lt; sizeof(short); i += 1) { bytes[sizeof(short) - 1 - i] = binaryReader.ReadByte(); } return BitConverter.ToInt16(bytes, 0); } private static int ReadLittleEndianInt32(this BinaryReader binaryReader) { byte[] bytes = new byte[sizeof(int)]; for (int i = 0; i &lt; sizeof(int); i += 1) { bytes[sizeof(int) - 1 - i] = binaryReader.ReadByte(); } return BitConverter.ToInt32(bytes, 0); } private static Size DecodeBitmap(BinaryReader binaryReader) { binaryReader.ReadBytes(16); int width = binaryReader.ReadInt32(); int height = binaryReader.ReadInt32(); return new Size(width, height); } private static Size DecodeGif(BinaryReader binaryReader) { int width = binaryReader.ReadInt16(); int height = binaryReader.ReadInt16(); return new Size(width, height); } private static Size DecodePng(BinaryReader binaryReader) { binaryReader.ReadBytes(8); int width = binaryReader.ReadLittleEndianInt32(); int height = binaryReader.ReadLittleEndianInt32(); return new Size(width, height); } private static Size DecodeJfif(BinaryReader binaryReader) { while (binaryReader.ReadByte() == 0xff) { byte marker = binaryReader.ReadByte(); short chunkLength = binaryReader.ReadLittleEndianInt16(); if (marker == 0xc0) { binaryReader.ReadByte(); int height = binaryReader.ReadLittleEndianInt16(); int width = binaryReader.ReadLittleEndianInt16(); return new Size(width, height); } binaryReader.ReadBytes(chunkLength - 2); } throw new ArgumentException(errorMessage); } } } </code></pre> <p>Hopefully the code is fairly obvious. To add a new file format you add it to imageFormatDecoders with the key being an array of the "magic bits" which appear at the begining of every file of the given format and the value being a function which extracts the size from the stream. Most formats are simple enough, the only real stinker is jpeg.</p> http://stackoverflow.com/questions/500736/generics-list-with-array-return-but-how/500873#500873 2 Answer by ICR for Generics List with Array return but how ? ICR 2009-02-01T14:02:49Z 2009-02-01T14:02:49Z <p>The method you are overriding has a return type of string. If you override a method, it's method signature (it's return type, name and arguments) should remain the same (well, there are cases where it can be different, but for now assume they should be the same). So your ToString() method must look like this:</p> <pre><code>public override string ToString() { ... } </code></pre> <p>It's up to you to decide what the best string representation is, but if you want to use ToString() it must return a string.</p> <p>As <a href="http://stackoverflow.com/questions/500736/generics-list-with-array-return-but-how/500739#500739">Neil Barnwell suggests</a> if you actually just want to return an array you could rename your current method to something like:</p> <pre><code>public string[] GetItems() { return Ad; } </code></pre> <p>or if you do want a string you could make your ToString method something like this:</p> <pre><code>public override string ToString() { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.Append("{ "); stringBuilder.Append(string.Join(", ", Ad)); stringBuilder.Append(" }"); return stringBuilder.ToString(); } </code></pre> <p>Depending on whether you are doing this to learn C# or whether it's actual code, I would look at:</p> <pre><code>List&lt;string&gt; list = new List&lt;string&gt;() { "yusef", "mehmet", }; </code></pre> <p>if you are using C# 3.0, or if not:</p> <pre><code>List&lt;string&gt; myitems = new List&lt;string&gt;(); myitems.AddRange(arraystr); </code></pre> http://stackoverflow.com/questions/500762/how-to-change-values-in-string-from-0-00-to-0-00/500837#500837 4 Answer by ICR for how to change values in string from 0,00 to 0.00 ICR 2009-02-01T13:47:52Z 2009-02-01T13:47:52Z <p>The best method depends on the context. Are you parsing the XML? Are you writing the XML. Either way it's all to do with culture.</p> <p>If you are writing it then I am assuming your culture is set to something which uses commas as decimal seperators and you're not aware of that fact. Firstly go change your culture in Windows settings to something which better fits your culture and the way you do things. Secondly, if you were writing the numbers out for human display then I would leave it as culturally sensative so it will fit whoever is reading it. If it is to be parsed by another machine then you can use the Invariant Culture like so:</p> <pre><code>12.1223.ToString(CultureInfo.InvariantCulture); </code></pre> <p>If you are reading (which I assume is what you are doing) then you can use the culture info again. If it was from a human source (e.g. they typed it in a box) then again use their default culture info (default in float.Parse). If it is from a computer then use InvariantCulture again:</p> <pre><code>float f = float.Parse("12.1223", CultureInfo.InvariantCulture); </code></pre> <p>Of course, this assumes that the text was written with an invariant culutre. But as you're asking the question it's not (unless you have control over it being written, in which case use InvariantCulture to write it was suggested above). You can then use a specific culture which does understand commas to parse it:</p> <pre><code>NumberFormatInfo commaNumberFormatInfo = new NumberFormatInfo(); commaNumberFormatInfo.NumberDecimalSeperator = ","; float f = float.Parse("12,1223", commaNumberFormatInfo); </code></pre> http://stackoverflow.com/questions/499153/passing-a-qualified-non-static-member-function-as-a-function-pointer 4 Passing a qualified non-static member function as a function pointer. ICR 2009-01-31T16:53:20Z 2009-01-31T19:42:16Z <p>I have a function in an external library that I cannot change with the following signature:</p> <pre><code>void registerResizeCallback(void (*)(int, int)) </code></pre> <p>I want to pass in a member function as the callback, as my callback needs to modify instance variables.</p> <p>Obviously this isn't possible with a simple:</p> <pre><code>registerResizeCallback(&amp;Window::Resize); </code></pre> <p>so I'm not really sure how to solve the problem.</p> http://stackoverflow.com/questions/472282/show-console-in-windows-application/472432#472432 0 Answer by ICR for Show Console in Windows Application? ICR 2009-01-23T10:12:25Z 2009-01-23T10:12:25Z <p>Easiest way is to start a WinForms application, go to settings and change the type to a console application.</p> http://stackoverflow.com/questions/374930/validating-file-types-by-regular-expression/376511#376511 4 Answer by ICR for Validating file types by regular expression ICR 2008-12-18T00:09:04Z 2008-12-20T07:28:08Z <p>You can embed case insensitity into the regular expression like so:</p> <pre><code>\.(?i:)(?:jpg|gif|doc|pdf)$ </code></pre> http://stackoverflow.com/questions/1465937/return-false-if-variable-isnt-boolean/1465980#1465980 Comment by ICR on Return False if variable isn't boolean ICR 2009-09-24T09:47:04Z 2009-09-24T09:47:04Z tsk tskm, magic constants. That's what Boolean.TrueString is for. http://stackoverflow.com/questions/1468835/c-disable-the-tab Comment by ICR on C# disable the TAB ICR 2009-09-24T08:51:40Z 2009-09-24T08:51:40Z Is there any reason you are explicitly moving focus when tab is pressed rather than relying on the default mechanism and tab order? http://stackoverflow.com/questions/1455026/check-if-relative-uri-exists Comment by ICR on Check if relative URI exists ICR 2009-09-21T15:22:08Z 2009-09-21T15:22:08Z Is this from within an ASP.Net website? http://stackoverflow.com/questions/1454815/merging-two-objects-containing-properties-into-one-object Comment by ICR on Merging two objects containing properties into one object ICR 2009-09-21T14:32:36Z 2009-09-21T14:32:36Z I'm guessing you want to be able to do this given any two arbitrary objects, rather than just doing foo = new { one = foo.one, three = bar.three } http://stackoverflow.com/questions/1454490/when-to-make-a-form-flash-and-stop-flashing Comment by ICR on When to make a form flash and stop flashing? ICR 2009-09-21T13:44:46Z 2009-09-21T13:44:46Z You aren't using the Focus() method rather than the Focused property to check focus are you? http://stackoverflow.com/questions/1454215/dropdown-of-font-names-in-c-net/1454476#1454476 Comment by ICR on Dropdown of Font names in C#.Net ICR 2009-09-21T13:22:45Z 2009-09-21T13:22:45Z N.B. This doesn't take into account combined styles, like Bold+Underline. http://stackoverflow.com/questions/1452261/how-do-i-invoke-an-extension-method-using-reflection/1452269#1452269 Comment by ICR on How do I invoke an extension method using reflection? ICR 2009-09-21T12:57:15Z 2009-09-21T12:57:15Z They're still a compiler trick, it's just the VB.NET compiler also uses the same trick. http://stackoverflow.com/questions/1453896/how-to-identify-the-keyboard-keys-using-c Comment by ICR on How to identify the keyboard keys using C# ICR 2009-09-21T12:04:17Z 2009-09-21T12:04:17Z It's usually best to put the actual problem you are trying to solve in the title, not the problems you are having with a proposed problem. You can, obviously, then include your proposed solution and it's problem in the question. Currently anyone who knows how to identify when the system is locked but doesn't know how to hook keys will overlook your question when they actually have a valid alternative solution. http://stackoverflow.com/questions/1453896/how-to-identify-the-keyboard-keys-using-c Comment by ICR on How to identify the keyboard keys using C# ICR 2009-09-21T12:01:06Z 2009-09-21T12:01:06Z @Johannes R&#246;ssel - I think he means when the account is locked and you are required to type a password in to unlock it. http://stackoverflow.com/questions/1451894/algorithm-for-reading-the-actual-content-of-news-articles-and-ignoring-noise-on/1451929#1451929 Comment by ICR on Algorithm for reading the actual content of news articles and ignoring "noise" on the page? ICR 2009-09-20T21:35:51Z 2009-09-20T21:35:51Z You could train it based upon the content of the text inside the html elements. First extract all the paragraphs of text, and then train it based on whether that paragraph is part of the article or not. I'm not sure how well this would work -- you may find that articles contain certain sorts of words while the noise contains different sorts. Or you may find that they are too indistinguishable. You can try and be a bit smart based on stop words, whether the paragraph contains words related to the headline, length of the text etc. as well. http://stackoverflow.com/questions/1445845/linq-query-to-exclude-from-a-list-when-a-property-value-of-list-of-different-type/1445851#1445851 Comment by ICR on Linq query to exclude from a List when a property value of List of different type are equal? ICR 2009-09-19T15:01:48Z 2009-09-19T15:01:48Z For simply queries some people prefer using the dot notation: var myFees = ctx.Fees.Where(fee =&gt; !ExcludedFeeIDs.Contains(fee.FeeID)); http://stackoverflow.com/questions/1447377/input-on-same-line-as-output-in-c/1447382#1447382 Comment by ICR on Input on same line as output in c#? ICR 2009-09-19T14:42:05Z 2009-09-19T14:42:05Z If it's a correct answer that works for you, then click the little tick on the left to accept it as the correct answer. It means the efforts of the commenter are recognised in reputation and makes it easier for people scanning for answers to see which the correct one is. http://stackoverflow.com/questions/1448458/how-to-round-decimal-value-up-to-nearest-0-05-value/1448465#1448465 Comment by ICR on How to round decimal value up to nearest 0.05 value?? ICR 2009-09-19T14:32:46Z 2009-09-19T14:32:46Z It should be noted that while this is a very good solution for the problem of rounding to arbitrary fractions, for decimal place rounding Math.Round should be used (just in case anyone comes looking at this question for a solution to more standard rounding). http://stackoverflow.com/questions/1443886/how-can-i-hide-a-base-class-public-property-in-the-derived-class/1443925#1443925 Comment by ICR on How can I hide a base class public property in the derived class ICR 2009-09-19T12:04:06Z 2009-09-19T12:04:06Z Using The Browsable attribute is how they do it in the .NET Framework. http://stackoverflow.com/questions/1443886/how-can-i-hide-a-base-class-public-property-in-the-derived-class Comment by ICR on How can I hide a base class public property in the derived class ICR 2009-09-18T13:18:41Z 2009-09-18T13:18:41Z Your solution obviously only hides the setter. While it stops the immediate assignment, there is nothing to stop the following: ((a)obj).item1 = 4; b cannot be programmed under the assumption that item1 will never change, as it might. It stops the simple case but not every case. A more robust solution would be to re-architecture the inheritance hierarchy.