User frou - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:53:50Z http://stackoverflow.com/feeds/user/82 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/363292/why-is-visual-c-lacking-refactor-functionality 3 Why is Visual C++ lacking refactor functionality? frou 2008-12-12T16:34:27Z 2009-11-15T11:23:59Z <p>When programming in C++ in Visual Studio 2008, why is there no functionality like that seen in the refactor menu when using C#?</p> <p><img src="http://img517.imageshack.us/img517/2883/renameoq5.png" alt="screen" /></p> <p>I use <strong>Rename</strong> constantly and you really miss it when it's not there. I'm sure you can get plugins that offer this, but why isn't it integrated in to the IDE when using C++? Is this due to some gotcha in the way that C++ must be parsed?</p> http://stackoverflow.com/questions/1735483/where-should-a-windows-applications-working-files-be-written 0 Where should a Windows application's working files be written? frou 2009-11-14T20:25:39Z 2009-11-15T03:40:30Z <p>If you have a Windows application that needs to write working files as part of its normal operation (not prompted by the user):</p> <ul> <li>Where on the file system should they be written?</li> <li>What's the correct way to get this directory in .NET for all Windows versions (XP/V/7/Server)?</li> </ul> <p>(Writing to the same directory as the executable or a "temp" directory are not suitable for my specific case.)</p> http://stackoverflow.com/questions/32709/isnt-funct-bool-and-predicatet-the-same-thing-after-compilation/1735428#1735428 0 Answer by frou for Isn't Func<T, bool> and Predicate<T> the same thing after compilation? frou 2009-11-14T20:02:26Z 2009-11-14T20:02:26Z <p>The more flexible <code>Func</code> family only arrived in .NET 3.5, so it will functionally duplicate types that had to be included earlier out of necessity.</p> <p>(Plus the name <code>Predicate</code> communicates the intended usage to readers of the source code)</p> http://stackoverflow.com/questions/1728367/how-to-prevent-auto-implemented-properties-from-being-serialized/1728456#1728456 1 Answer by frou for How to prevent auto implemented properties from being serialized? frou 2009-11-13T10:41:20Z 2009-11-13T10:41:20Z <pre><code>// This works for the underlying delegate of the `event` add/remove mechanism. [field:NonSerialized] public event EventHandler SomethingHappened; </code></pre> <p>But it doesn't seem to for auto-implemented properties. I thought it was worth mentioning because it's useful to know when serializng an object with event subscribers attached to it.</p> http://stackoverflow.com/questions/512166/c-the-foreach-identifier-and-closures 23 C# - The foreach identifier and closures frou 2009-02-04T16:39:26Z 2009-11-07T08:13:12Z <p>In the two following snippets, is the first one safe or must you do the second one?</p> <p>By safe I mean is each thread guaranteed to call the method on the Foo from the same loop iteration in which the thread was created?</p> <p>Or must you copy the reference to a new variable "local" to each iteration of the loop?</p> <pre><code>var threads = new List&lt;Thread&gt;(); foreach (Foo f in ListOfFoo) { Thread thread = new Thread(() =&gt; f.DoSomething()); threads.Add(thread); thread.Start(); } </code></pre> <p>-</p> <pre><code>var threads = new List&lt;Thread&gt;(); foreach (Foo f in ListOfFoo) { Foo f2 = f; Thread thread = new Thread(() =&gt; f2.DoSomething()); threads.Add(thread); thread.Start(); } </code></pre> <p><strong>Update:</strong> As pointed out in Jon Skeet's answer, this doesn't have anything specifically to do with threading.</p> http://stackoverflow.com/questions/1664104/ansi-c-c-free-e-book-source-for-download/1664130#1664130 2 Answer by frou for Ansi C & C++ free e-book source for download frou 2009-11-02T22:25:11Z 2009-11-02T22:25:11Z <p>"The C Book" is available here in HTML and PDF form. Redistribution is allowed.</p> <p><a href="http://publications.gbdirect.co.uk/c%5Fbook/" rel="nofollow">http://publications.gbdirect.co.uk/c%5Fbook/</a></p> http://stackoverflow.com/questions/1663914/todo-comments-are-not-showing-up-in-the-task-list/1663952#1663952 1 Answer by frou for TODO: comments are not showing up in the Task List frou 2009-11-02T21:52:07Z 2009-11-02T21:52:07Z <p>I was under the impression that even when the Task List is working normally, TODO items are only shown for currently open files (or some other limitation)?</p> <p>I have got it to the habit of just using the "Find in files" text search to list every TODO in the entire solution. It's bit less pretty but it works every time.</p> http://stackoverflow.com/questions/1650681/determining-whether-a-type-is-an-anonymous-type 3 Determining whether a Type is an Anonymous Type frou 2009-10-30T15:58:59Z 2009-10-30T16:42:35Z <p>In C# 3.0, is it possible to determine whether an instance of <code>Type</code> represents an Anonymous Type?</p> http://stackoverflow.com/questions/741012/is-the-c-programming-language-book-current 14 Is "The C Programming Language" (book) current? frou 2009-04-12T00:01:41Z 2009-10-22T13:16:26Z <p><img src="http://img403.imageshack.us/img403/7610/cpl.png" alt="alt text" title="cover" /></p> <p>Is the version of C taught by this rather old, but frequently mentioned, book the same as that which is being used in the real world today? If not, could anyone list or point to a list of the differences?</p> http://stackoverflow.com/questions/1606454/conditional-orderby-sort-order-in-linq 0 Conditional "orderby" sort order in LINQ frou 2009-10-22T10:59:44Z 2009-10-22T11:18:15Z <p>In LINQ, is it possible to have conditional orderby sort order (ascending vs. descending).</p> <p>Something like this (not valid code):</p> <pre><code>bool flag; (from w in widgets where w.Name.Contains("xyz") orderby w.Id (flag ? ascending : descending) select w) </code></pre> http://stackoverflow.com/questions/1604110/sqldbtype-enumeration-mapping-c/1604120#1604120 4 Answer by frou for SqlDbType enumeration mapping - C# frou 2009-10-21T22:56:45Z 2009-10-21T22:56:45Z <p>Decimal.</p> <p>See this page: <a href="http://msdn.microsoft.com/en-us/library/system.data.sqltypes.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.data.sqltypes.aspx</a></p> http://stackoverflow.com/questions/1591994/is-the-amazon-kindle-suitable-for-programming-books 8 Is the Amazon Kindle suitable for programming books? frou 2009-10-20T01:21:48Z 2009-10-20T15:58:38Z <p><img src="http://img5.imageshack.us/img5/183/toscaleturingsmv2441327.jpg" alt="alt text" /></p> <p>Now that the Amazon Kindle is <a href="http://www.businessweek.com/the%5Fthread/techbeat/archives/2009/10/amazon%5Fkindle%5Fg.html" rel="nofollow">available internationally</a>, I'm considering getting one. There are plenty of reviews around the net, but what I want to ask here is whether this device is are suitable for reading programming reference books. I'd really appreciate the thoughts of anyone with experience of it.</p> <ul> <li><p>Is the amount of text that can be shown on screen at once limiting?</p></li> <li><p>Are source code listings a problem?</p></li> <li><p>How easy is it to jump from place to place in a non-linear way as you do with a reference book?</p></li> <li><p>Are the note taking and annotation features practical?</p></li> </ul> <blockquote> <p>As far as my question goes:</p> <p>I am interested in the standard Kindle currently being sold (the "Kindle 2") and not the "Kindle DX".</p> <p>I would not use it for only programming books, but it would be a lot of money to spend on a device not suitable for them.</p> <p>Assume that the books are available direct from Amazon, i.e. no messy file conversions needed. </p> </blockquote> http://stackoverflow.com/questions/529929/choosing-the-default-value-of-an-enum-type-without-having-to-change-values 1 Choosing the default value of an Enum type without having to change values frou 2009-02-09T20:59:20Z 2009-10-15T02:16:56Z <p>In C#, is it possible to decorate an Enum type with an attribute or do something else to specify what the default value should be, without having the change the values? The numbers required might be set in stone for whatever reason, and it'd be handy to still have control over the default.</p> <pre><code>enum SexualOrientation { None = -1, North = 0, East = 1, South = 2, West = 3 } SexualOrientation so; // Is 'North' by default. </code></pre> http://stackoverflow.com/questions/222655/embedding-assemblies-inside-another-assembly 6 Embedding assemblies inside another assembly frou 2008-10-21T17:01:46Z 2009-10-15T00:39:09Z <p>If you create a class library that uses things from other assemblies, is it possible to embed those other assemblies inside the class library as some kind of resource?</p> <p>i.e.</p> <p>Instead of having <em>MyAssembly.dll</em>, <em>SomeAssembly1.dll</em> and <em>SomeAssembly2.dll</em> sitting on the file system, those other two files get bundled in to <em>MyAssembly.dll</em> and are usable in its code.</p> <p><hr /></p> <p>I'm also a little confused about why .NET assemblies are <em>.dll</em> files. Didn't this format exist before .NET? Are all .NET assemblies dlls, but not all dlls are .NET assemblies? Why do they use the same file format and/or file extension?</p> http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming/1569568#1569568 8 Answer by frou for C vs. Java for game programming frou 2009-10-14T23:31:34Z 2009-10-14T23:31:34Z <p>High performance and the inertia of C and C++ traditionally being used for games.</p> <p>Choosing based on performance isn't that big a priority unless you are making a 3D extravaganza.</p> http://stackoverflow.com/questions/1545345/are-there-any-tricks-for-counting-the-number-of-lines-in-a-text-file 8 Are there any tricks for counting the number of lines in a text file? frou 2009-10-09T18:25:23Z 2009-10-14T10:58:03Z <p>Say you have a text file - what's the fastest and/or most memory efficient way to determine the number of lines of text in that file?</p> <p>Is it simply a matter of scanning through it character by character and looking for newline characters?</p> http://stackoverflow.com/questions/1559459/windows-handle-issue/1559530#1559530 2 Answer by frou for Windows Handle Issue frou 2009-10-13T11:00:16Z 2009-10-13T11:00:16Z <p>This is an unfounded suggestion, but remember to make sure that unneeded <code>Controls</code> always detach themselves from events they are be subscribed to. A <code>Control</code> that's still subscribed to an event of an "active" (what's the right term?) object can't be cleaned up.</p> http://stackoverflow.com/questions/1559293/csharp-monitor-wait-pulse-pulseall/1559303#1559303 0 Answer by frou for CSharp : Monitor - Wait,Pulse,PulseAll frou 2009-10-13T10:10:59Z 2009-10-13T10:10:59Z <p>Read <a href="http://www.yoda.arachsys.com/csharp/threads/" rel="nofollow">Jon Skeet's multi-part threading article</a>.</p> <p>It's really good. The ones you mention are about a third of the way in.</p> http://stackoverflow.com/questions/869610/c-resolving-a-parameter-name-at-runtime 3 C# - Resolving a parameter name at runtime frou 2009-05-15T16:16:44Z 2009-10-13T02:08:38Z <p>In C#, is there a way (terser the better) to resolve the name of a parameter at runtime?</p> <p>For example, in the following method, if you renamed the method parameter, you'd also have to remember to update the string literal passed to ArgumentNullException.</p> <pre><code> public void Woof(object resource) { if (resource == null) { throw new ArgumentNullException("resource"); } // .. } </code></pre> http://stackoverflow.com/questions/1550909/coding-practices-for-c-nullable-type/1550963#1550963 1 Answer by frou for Coding practices for C# Nullable type frou 2009-10-11T15:32:20Z 2009-10-11T15:32:20Z <p>They seem suitable for the starting value of some value type variables.</p> <pre><code>int? lastCodeReceived; if (lastCodeReceived.HasValue) { // At least one code has been received. } </code></pre> http://stackoverflow.com/questions/1550842/are-c-extension-methods-only-available-for-instance-methods/1550848#1550848 3 Answer by frou for Are C# extension methods only available for instance methods? frou 2009-10-11T14:42:59Z 2009-10-11T14:53:59Z <p>You cannot create static extension methods - it's also something I've wished to be able to do!</p> <p>You could create your own static classes with a standard suffix, i.e. MathJSyntax.abs(..) which would call Math.Abs(..)</p> http://stackoverflow.com/questions/1549134/generic-method-to-get-a-control-name-when-moused-over/1549185#1549185 0 Answer by frou for Generic method to get a control name when moused over? frou 2009-10-10T22:00:03Z 2009-10-10T22:21:33Z <p><strong>Edit</strong> - I wasn't thinking straight. Apologies.</p> http://stackoverflow.com/questions/1545507/visual-studio-ide-issue/1545573#1545573 0 Answer by frou for Visual Studio IDE Issue frou 2009-10-09T19:09:16Z 2009-10-09T19:09:16Z <p>Could this happen if the current "Startup Project" - the one in bold in the Solution Explorer - is not an executable?</p> <p>(I don't have access to VS to check)</p> http://stackoverflow.com/questions/1521157/drawing-vertically-stacked-text-in-winforms 3 Drawing vertically stacked text in WinForms frou 2009-10-05T16:46:39Z 2009-10-05T17:54:12Z <p>Preferably using a <code>Graphics</code> object, how do you draw a string so that the characters are still oriented normally, but are stacked vertically?</p> <p>Hopefully this rough picture conveys what I mean:</p> <p><img src="http://img126.imageshack.us/img126/3696/79158004.png" alt="alt text" /></p> http://stackoverflow.com/questions/1498832/colourizing-a-bitmap-in-net 1 "Colourizing" a Bitmap in .NET frou 2009-09-30T15:22:13Z 2009-10-01T11:19:48Z <p>If you have a <code>System.Drawing.Bitmap</code> instance that contains a greyscale image, is there a built in way to "colourize" it with the influence of another colour?</p> <p>For example, if you had a black and white (greyscale) picture of a coffee mug and you wanted to create separate images of red, green and purple versions programmatically.</p> http://stackoverflow.com/questions/1120723/shortest-way-to-create-a-listt-of-a-repeated-element 5 Shortest way to create a List<T> of a repeated element frou 2009-07-13T16:52:57Z 2009-09-28T16:49:10Z <p>With the String class, you can do:</p> <pre><code>string text = new string('x', 5); //text is "xxxxx" </code></pre> <p>What's the shortest way to create a List&lt; T > that is full of <code>n</code> elements which are all the same reference?</p> http://stackoverflow.com/questions/907111/zedgraph-net-having-axis-labels-for-actual-values-only 0 ZedGraph (.NET) - Having axis labels for actual values only frou 2009-05-25T15:13:26Z 2009-09-23T13:28:04Z <p>Using the <a href="http://zedgraph.org" rel="nofollow">ZedGraph</a> control, say I am plotting data that has Y values of 13, 34, and 55.</p> <p>How do I set up my Y Axis so that the only text labels shown (and I guess that grid lines would be synchronised) are those for 13, 34 and 55?</p> <p>I don't want regularly spaced labels in the range of my data (say 0, 25, 50, 75, ..). Just labels at the actual values.</p> http://stackoverflow.com/questions/1437806/whats-faster-than-notepad-for-viewing-large-text-files 3 What's faster than notepad for viewing large text files? [closed] frou 2009-09-17T09:56:36Z 2009-09-17T10:22:01Z <p>When I want to view a large log file or other text file, opening it in Windows' <code>notepad</code> takes forever, yet I find myself doing it all the time.</p> <p>Is there a better (faster at opening, scrolling) application for viewing large text files on Windows?</p> http://stackoverflow.com/questions/1406465/does-mit-license-mean-i-have-to-show-my-code-to-the-world/1406491#1406491 1 Answer by frou for Does MIT License mean I have to show my code to the world? frou 2009-09-10T16:59:16Z 2009-09-10T16:59:16Z <p>You don't have to show any code.</p> <p>You just have to make it clear that you're using the component and link or include the text of the license.</p> http://stackoverflow.com/questions/1341843/does-binaryformatter-apply-any-compression 2 Does BinaryFormatter apply any compression? frou 2009-08-27T15:30:31Z 2009-08-27T16:00:06Z <p>When .NET's <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.formatters.binary.binaryformatter.aspx" rel="nofollow"><code>BinaryFormatter</code></a> is used to serialize an object graph, is any type of compression applied?</p> <p>I ask in the context of whether I should worry about the object graph having many repeated strings and integers.</p> <p><strong>Edit</strong> - Hold on, if strings are interned in .NET, there's no need to worry about repeated strings, right?</p> http://stackoverflow.com/questions/1663071/c-pointer-syntax-style-poll Comment by frou on C Pointer Syntax: Style poll frou 2009-11-02T20:44:27Z 2009-11-02T20:44:27Z Polls like this are boring because it's such a low barrier to entry that you end up with many answers with little thought or explanation provided. http://stackoverflow.com/questions/1650681/determining-whether-a-type-is-an-anonymous-type/1650722#1650722 Comment by frou on Determining whether a Type is an Anonymous Type frou 2009-10-30T17:45:38Z 2009-10-30T17:45:38Z I capitalised Anonymous Type because I'm talking about the language feature. http://stackoverflow.com/questions/1650681/determining-whether-a-type-is-an-anonymous-type/1650832#1650832 Comment by frou on Determining whether a Type is an Anonymous Type frou 2009-10-30T16:20:05Z 2009-10-30T16:20:05Z Don't worry about why. It is curiosity :) http://stackoverflow.com/questions/1650681/determining-whether-a-type-is-an-anonymous-type/1650722#1650722 Comment by frou on Determining whether a Type is an Anonymous Type frou 2009-10-30T16:09:45Z 2009-10-30T16:09:45Z No 'var' involved. http://stackoverflow.com/questions/1650681/determining-whether-a-type-is-an-anonymous-type/1650722#1650722 Comment by frou on Determining whether a Type is an Anonymous Type frou 2009-10-30T16:08:03Z 2009-10-30T16:08:03Z int i = 0; Type t = (new { i }).GetType(); http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time Comment by frou on Why does an empty loop use so much processor time? frou 2009-10-23T23:44:47Z 2009-10-23T23:44:47Z Are we there yet? Are we there yet? Are we there yet? Are we there yet? Are we there yet? Are we there yet? http://stackoverflow.com/questions/1591994/is-the-amazon-kindle-suitable-for-programming-books/1592908#1592908 Comment by frou on Is the Amazon Kindle suitable for programming books? frou 2009-10-20T23:09:20Z 2009-10-20T23:09:20Z Got it. I don't think I'll buy the Kindle, then, but I'll keep an eye on how the e-ink readers evolve. http://stackoverflow.com/questions/1591994/is-the-amazon-kindle-suitable-for-programming-books Comment by frou on Is the Amazon Kindle suitable for programming books? frou 2009-10-20T01:41:24Z 2009-10-20T01:41:24Z Have a day off, Mr Serious Robot. http://stackoverflow.com/questions/1591994/is-the-amazon-kindle-suitable-for-programming-books/1592023#1592023 Comment by frou on Is the Amazon Kindle suitable for programming books? frou 2009-10-20T01:34:53Z 2009-10-20T01:34:53Z I don't care about trees used to make traditional books. Please elaborate :) http://stackoverflow.com/questions/529929/choosing-the-default-value-of-an-enum-type-without-having-to-change-values Comment by frou on Choosing the default value of an Enum type without having to change values frou 2009-10-15T00:40:41Z 2009-10-15T00:40:41Z this is my old question and it has reappeared on the front page. what the <i>**</i> was I thinking with that example... http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming Comment by frou on C vs. Java for game programming frou 2009-10-15T00:30:13Z 2009-10-15T00:30:13Z Whether we are talking about hobbyist games or full-on commercial games colours things a lot, I think! http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming/1569569#1569569 Comment by frou on C vs. Java for game programming frou 2009-10-15T00:24:14Z 2009-10-15T00:24:14Z The BestGameEver, Quake III Arena, is written in C :-) http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming/1569568#1569568 Comment by frou on C vs. Java for game programming frou 2009-10-14T23:41:58Z 2009-10-14T23:41:58Z Good point - obviously commercial stuff for consoles have a ton of restrictions on how you build your game! http://stackoverflow.com/questions/138715/programming-with-add-adhd/402020#402020 Comment by frou on Programming with ADD/ADHD frou 2009-10-11T14:06:58Z 2009-10-11T14:06:58Z I know this supreme-zone state but, unfortunately, occurrences seem to be years apart for me. http://stackoverflow.com/questions/1545345/are-there-any-tricks-for-counting-the-number-of-lines-in-a-text-file/1545399#1545399 Comment by frou on Are there any tricks for counting the number of lines in a text file? frou 2009-10-11T13:25:04Z 2009-10-11T13:25:04Z I marked Matthew as the answer, but your answer and comments have been helpful, and I take them on board, Jon.