User Joel in G&#246; - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:12:52Z http://stackoverflow.com/feeds/user/6091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1587502/how-to-get-visualstudio-2010-cool-tools-without-spending-12-000 8 How to get VisualStudio 2010 cool tools without spending $12,000 Joel in Gö 2009-10-19T08:21:10Z 2009-11-14T04:40:36Z <p>We are a small dev shop with 10 people, 3 of whom are currently doing .Net. The new VisualStudio 2010 tools look really nice, and we would like to use them - but it seems that many of them (historical debugging, UML tools, testing stuff) are only going to be available in the Ultimate Edition. And that costs $12,000. Or nearly forty grand for the three of us. (See <a href="http://www.theregister.co.uk/2009/10/19/visual%5Fstudio%5F2010%5Fsecond%5Fbeta%5Fpackaging/" rel="nofollow">here</a> for details).</p> <p>Given that the architectural visualisation tools seem to be lifted straight from <a href="http://www.ndepend.com/Purchase.aspx" rel="nofollow">NDepend</a>, which cost around €250 each (and is excellent), we just can't justify that sort of spending.</p> <p>Now, we have a normal MSDN professional subscription, but that only got us one VS Team System, and I assume will not get us three 2010 Ultimates. Given that we have no use for the whole Team Foundation Server stuff, and just want the dev tools, what can we do? </p> <p>EDIT:</p> <p>Here is a list of the dev tools (leaving database and "testing lab" tools for another question) which are missing from the "Professional" version. An asterisk (*) means that the feature is in the "Premium" edition, no asterisk means only available in "Ultimate". What are the non-multi-thousand-dollar alternatives? </p> <ul> <li><p><strong>Testing:</strong></p> <p>Code Coverage (*) </p> <p>Test Impact Analysis (*)</p> <p>Coded UI Test (*)</p> <p>Web Performance Testing</p> <p>Load Testing</p></li> <li><p><strong>Debugging &amp; Diagnostics:</strong></p> <p>Static Code Analysis (*)</p> <p>Code Metrics (*)</p> <p>Profiling (*)</p> <p>IntelliTrace (Historical Debugger)</p></li> <li><p><strong>Architecture and Modeling:</strong></p> <p>UML &amp; Layer diagram viewer (*)</p> <p>Architecture Explorer</p> <p>UML 2.0 Compliant Diagrams (Activity, Use Case, Sequence, Class, Component)</p> <p>Layer Diagram and Dependency Validation</p></li> </ul> http://stackoverflow.com/questions/1673208/why-does-serializationinfo-not-have-trygetvalue-methods 1 Why does SerializationInfo not have TryGetValue methods? Joel in Gö 2009-11-04T11:27:47Z 2009-11-04T11:36:26Z <p>When implementing the <code>ISerializable</code> interface in C#, we provide a constructor which takes a <code>SerializationInfo</code> object, and then queries it with various <code>GetInt32</code>, <code>GetObject</code> etc. methods in order to fill the fields of the object which we are trying to deserialize. </p> <p>One major reason to implement this interface, rather than just using the <code>[Serializable]</code> attribute, is for backwards compatibility: if we have added new fields to the class at some point, we can catch the <code>SerializationException</code> thrown by a serialized, older version of the class, and handle them in an appropriate manner. </p> <p>My question is the following: why do we have to use these exceptions for what is, essentially, control flow? If I am deserializing a large number of classes which were saved some time ago, potentially each missing field in each class will throw an exception, causing really bad performance. </p> <p>Why does the <code>SerializationInfo</code> class not provide <code>TryGetValue</code> methods which would simply return <code>false</code> if the name string were not present?</p> http://stackoverflow.com/questions/1587502/how-to-get-visualstudio-2010-cool-tools-without-spending-12-000/1624808#1624808 0 Answer by Joel in Gö for How to get VisualStudio 2010 cool tools without spending $12,000 Joel in Gö 2009-10-26T13:31:09Z 2009-10-26T13:31:09Z <p>To start off the alternatives, as mentioned above: <a href="http://www.ndepend.com/Default.aspx" rel="nofollow">NDepend</a> is an excellent alternative to the Architecture Explorer, though missing some of the integration into VS. It also provides Code Metrics (dozens of them!) and static code analysis, including flagging dependency cycles etc etc. </p> <p>Costs around €250.</p> http://stackoverflow.com/questions/984576/when-is-visual-studio-2010-expected-to-rtm/1594177#1594177 3 Answer by Joel in Gö for When is Visual Studio 2010 expected to RTM? Joel in Gö 2009-10-20T12:14:02Z 2009-10-20T12:14:02Z <p>March 22nd, Microsoft has now announced <a href="http://www.theregister.co.uk/2009/10/19/visual%5Fstudio%5F2010%5Fsecond%5Fbeta%5Fpackaging/" rel="nofollow">to The Register</a></p> http://stackoverflow.com/questions/789221/summary-of-vs2010-feature-list/1594154#1594154 0 Answer by Joel in Gö for Summary of VS2010 feature list? Joel in Gö 2009-10-20T12:09:23Z 2009-10-20T12:09:23Z <p>The list of features, together with the table showing which are available for which version, is now up <a href="http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx" rel="nofollow">here (Microsoft)</a>. </p> <p>Note that the versions for less than $12,000 are seriously crippled, to various degrees. So Code Coverage is only available from $5K up, and Historical Debugger (now "Intellitrace") only for $12K.</p> http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1486464#1486464 1 Answer by Joel in Gö for How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features? Joel in Gö 2009-09-28T11:00:20Z 2009-09-28T11:00:20Z <p>Adding detachable panes for related options and commands can help the user to organise them, at least. If they can be minimised/unpinned when not needed, then they can also free up valuable screen estate and unclutter the UI. See VisualStudio itself for a nice implementation. </p> http://stackoverflow.com/questions/536066/how-to-use-trackpad-scrolling-in-net 1 How to use trackpad scrolling in .Net Joel in Gö 2009-02-11T09:23:01Z 2009-09-24T13:00:01Z <p>My WinForms app uses the mouse wheel, subscribing to the <code>Control.MouseWheel</code> event. How can I get it to work with scrolling methods from other input devices, in particular "finger along the edge" scrolling on the (Synaptics) trackpad on my T61? I assume that I need to wire up the trackpad messages to the <code>Control.MouseWheel</code> event somehow, but I have no idea where to start...</p> <p>EDIT: This is currently not working; so my trackpad is evidently not sending <code>Control.MouseWheel</code> messages.</p> <p>Thanks!</p> <p>(I am using C#, but this is surely .Net general).</p> http://stackoverflow.com/questions/58649/how-to-get-the-exif-data-from-a-file-using-c 11 How to get the EXIF data from a file using C# Joel in Gö 2008-09-12T10:43:49Z 2009-08-12T21:34:19Z <p>Hi, I would like to write a small program in C# which goes through my jpeg photos and, for example, sorts them into dated folders (using MY dating conventions, dammit...). </p> <p>Does anyone know a relatively easy way to get at the EXIF data such as Date And Time or Exposure programatically? Thanks!</p> http://stackoverflow.com/questions/284753/nuggets-of-wisdom/1206137#1206137 5 Answer by Joel in Gö for Nuggets of wisdom? Joel in Gö 2009-07-30T11:58:33Z 2009-07-30T11:58:33Z <p>My all-time favourite has to be Hofstadter's Law:</p> <p>It will take longer than you think, <em>even if you take Hofstadter's Law into account</em>.</p> <p>:)</p> http://stackoverflow.com/questions/285323/best-practice-how-to-expose-a-read-only-icollection 2 Best practice: How to expose a read-only ICollection Joel in Gö 2008-11-12T20:50:27Z 2009-07-30T06:50:48Z <p>I have an <code>ICollection&lt;T&gt;</code> called <code>foos</code> in my class which I want to expose as read-only (see <a href="http://stackoverflow.com/questions/284090/how-to-get-a-readonlycollectiont-of-the-keys-in-a-dictionaryt-s">this question</a>). I see that the interface defines a property <code>.IsReadOnly</code>, which seems appropriate... My question is this: how do I make it obvious to the consumer of the class that <code>foos</code> is read-only? </p> <p>I don't want to rely on them remembering to query <code>.IsReadOnly</code> before trying a not-implemented method such as <code>.Add()</code>. Ideally I would like to expose <code>foos</code> as a <code>ReadOnlyCollection&lt;T&gt;</code>, but it does not implement <code>IList&lt;T&gt;</code>. Should I expose <code>foo</code> via a method called eg. <code>GetReadOnlyFooCollection</code> rather than via a property? If so, would this not confuse someone who then expects a <code>ReadOnlyCollection&lt;T&gt;</code>? </p> <p>Edit: C# 2.0, so no extension methods like <code>ToList()</code> available...</p> http://stackoverflow.com/questions/1187830/using-64bit-windows-how-much-ram-is-sensible-for-running-visualstudio 0 Using 64bit Windows, how much RAM is sensible for running VisualStudio? [closed] Joel in Gö 2009-07-27T12:10:46Z 2009-07-27T12:24:13Z <p>I am probably going to migrate my work laptop (WinXP, ThinkPad T61) to Windows7 soon, and want to take the opportunity to upgrade to a 64bit OS and use the infinite amounts of RAM this will allow :)</p> <p>Given that laptop RAM not free, how much RAM would actually make a difference to my normal dev environment - VisualStudio running in a couple of instances, Firefox with umpty tabs open, perhaps one or two other apps running as well? Will I see much difference in upgrading from 32bit XP and 2GB RAM, and if so where is the cut off point? Is 4GB enough, or will I see a noticeable improvement with 6 or 8 or whatever... Thanks!</p> http://stackoverflow.com/questions/308476/how-to-find-out-whether-two-icollectiont-collections-contain-the-same-objects 3 How to find out whether two ICollection<T> collections contain the same objects Joel in Gö 2008-11-21T11:24:35Z 2009-07-10T16:44:12Z <p>What is the fastest way to find out whether two <code>ICollection&lt;T&gt;</code> collections contain precisely the same entries? Brute force is clear, I was wondering if there is a more elegant method?</p> <p>We are using C# 2.0, so no extension methods if possible, please!</p> <p>Edit: the answer would be interesting both for ordered and unordered collections, and would hopefully be different for each... </p> http://stackoverflow.com/questions/1048871/how-to-change-the-format-of-specified-lines-in-a-richtextbox 2 How to change the format of specified lines in a RichTextBox Joel in Gö 2009-06-26T12:26:51Z 2009-06-29T13:57:36Z <p>I have a winforms RichTextBox containing lots of lines of text (eg 2 MB text files), and would like to programmatically change the formatting of specified lines, eg highlighting them.</p> <p>How can I address the lines, rather than the characters? Is a RichTextBox even the best control for this sort of thing, or is there another alternative? I have tried the Infragistics UltraFormattedTextEditor, but it was at least a couple of orders of magnitude slower to display text, so no good for my longer files.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1048871/how-to-change-the-format-of-specified-lines-in-a-richtextbox/1057758#1057758 1 Answer by Joel in Gö for How to change the format of specified lines in a RichTextBox Joel in Gö 2009-06-29T11:09:15Z 2009-06-29T11:15:29Z <p>OK, I'll document the solution I found: using <code>richTextBox.Lines</code> to get the lines as Luis says, then </p> <pre><code>richTextBox.GetFirstCharIndexFromLine(int line) richTextBox.Select(int start, int length) </code></pre> <p>to select the relevant lines, then</p> <pre><code>richTextBox.SelectionColor... richTextBox.SelectionBackground... </code></pre> <p>etc. etc. to format the lines. </p> http://stackoverflow.com/questions/1000785/reading-dxf-files 0 Reading .DXF files Joel in Gö 2009-06-16T11:02:15Z 2009-06-24T14:43:36Z <p>Does anyone know of source code, ideally in C# or similar, for reading .DXF files (as used by AutoCAD etc)? If not code, then tables showing the various codes (elements / blocks / etc) and their meanings?</p> <p>I am writing a reader myself, and have dead tree documentation detailing the format, but am trying to avoid writing e.g. a converter from each of the 255 ACI colours to RGB... Thanks!</p> http://stackoverflow.com/questions/1000785/reading-dxf-files/1038047#1038047 0 Answer by Joel in Gö for Reading .DXF files Joel in Gö 2009-06-24T12:27:02Z 2009-06-24T12:27:02Z <p><a href="http://sourceforge.net/projects/dxf" rel="nofollow">Here</a> is another open source dxf reader, in Java. Buggy however!</p> http://stackoverflow.com/questions/1000785/reading-dxf-files/1005921#1005921 0 Answer by Joel in Gö for Reading .DXF files Joel in Gö 2009-06-17T08:58:02Z 2009-06-17T08:58:02Z <p><a href="http://www.codeproject.com/KB/cs/dxfreader.aspx" rel="nofollow">Here</a> is a link to a CodeProject dxf reader; it seems very limited (and not particularly well done) though.</p> http://stackoverflow.com/questions/995766/comparison-of-collection-datatypes-in-c 2 Comparison of collection datatypes in C# Joel in Gö 2009-06-15T12:10:00Z 2009-06-15T12:15:48Z <p>Does anyone know of a good overview of the different C# collection types? I am looking for something showing which basic operations such as <code>Add</code>, <code>Remove</code>, <code>RemoveLast</code> etc. are supported, and giving the relative performance. </p> <p>It would be particularly interesting for the various generic classes - and even better if it showed eg. if there is a difference in performance between a <code>List&lt;T&gt;</code> where <code>T</code> is a class and one where <code>T</code> is a struct.</p> <p>A start would be a nice cheat-sheet for the abstract data structures, comparing Linked Lists, Hash Tables etc. etc. Thanks!</p> http://stackoverflow.com/questions/980439/why-is-object-gettype-a-method-instead-of-a-property/980459#980459 2 Answer by Joel in Gö for Why is Object.GetType() a method instead of a property? Joel in Gö 2009-06-11T10:48:57Z 2009-06-11T10:48:57Z <p>As I understand it, it is in general considered good practice for internal fields or values which are trivial to calculate to be exposed using a property, and other values, which may require more time or other resources to calculate, to be exposed using a method. </p> http://stackoverflow.com/questions/126658/what-is-a-good-source-for-geometric-algorithms 14 What is a good source for geometric algorithms? Joel in Gö 2008-09-24T11:45:20Z 2009-05-30T23:52:04Z <p>I am looking for any good sources for geometric algorithms specifically; </p> <p>The simple stuff like when two lines cross and so on is easy enough (and easy to find), but I would like to find somewhere with algorithms for the more tricky things, such as finding the shape formed by expanding a given polygon by some amount; fast algorithms for shapes with curved sides, etc.</p> <p>Any good tips? Thanks!</p> http://stackoverflow.com/questions/722106/can-implementation-classes-inherit-xml-comments-from-their-implemented-interfac/887706#887706 1 Answer by Joel in Gö for Can implementation classes "inherit" XML comments from their implemented interfaces? Joel in Gö 2009-05-20T12:48:48Z 2009-05-20T12:48:48Z <p>Duplicate of <a href="http://stackoverflow.com/questions/824007/ways-to-synchronize-interface-and-implementation-comments-in-c">this question</a> (which actually has useful answers :) ). Also <a href="http://stackoverflow.com/questions/750856/xml-documentation-comments-with-interfaces-and-implementing-classes">this question</a>.</p> http://stackoverflow.com/questions/767715/trying-to-make-a-dialog-window-remember-its-last-position 1 Trying to make a dialog window remember its last position Joel in Gö 2009-04-20T10:35:31Z 2009-04-20T10:40:45Z <p>I am creating a simple dialogue window in C#, and want to remember where it is placed so that I can open another in the same place later (during the same application run, so no need for config files etc). I can easily save the Location (a Point) or the Bounds (a Rectangle), but on creating another form, calling <code>form.ShowDialog()</code> resets both:</p> <pre><code> Form form= new Form(); form.Location = ptSavedLocation; //now form.Location is correct form.ShowDialog(); //now form.Location is default again, and form is displayed where I don't want it. </code></pre> <p>How can I get the form to respect its Location (or Bounds, or any other appropriate property / setter) ? Thanks!</p> http://stackoverflow.com/questions/257047/how-to-divide-an-area-composed-of-small-squares-into-bigger-rectangles/713525#713525 0 Answer by Joel in Gö for How to divide an area composed of small squares into bigger rectangles? Joel in Gö 2009-04-03T11:14:38Z 2009-04-03T11:14:38Z <p>Have a look at <a href="http://www.ddj.com/184410529" rel="nofollow">this article from Dr Dobb's Portal</a> on finding a maximal rectangle in your situation. It is a very detailed discussion of an extremely efficient algorithm, and I think that repeating it iteratively would possibly solve your problem.</p> http://stackoverflow.com/questions/705161/where-is-the-visual-studio-layout-saved 0 Where is the Visual Studio layout saved? Joel in Gö 2009-04-01T11:55:54Z 2009-04-01T13:16:13Z <p>I am having problems with VS2008 moving the windows around and losing tabs when I close it and open again, or when I go from coding to debugging and back. (Yes, I know that it is supposed to save different layouts for coding and debugging). I have tried exporting my settings, but it informs me helpfully that </p> <p>"Your settings were exported, but there were some errors. Error 1: Some command bar settings were not exported correctly due to an internal error."</p> <p>Importing them again gives a similar error, and doesn't solve the problem. Does anyone know where VS saves the layout info? Or how to reinitialise the layout, without changing all my other settings? Thanks!</p> http://stackoverflow.com/questions/681287/how-to-make-a-reference-type-property-readonly 3 How to make a reference type property "readonly" Joel in Gö 2009-03-25T12:09:35Z 2009-03-26T09:34:07Z <p>I have a class <code>Bar</code> with a private field containing the reference type <code>Foo</code>. I would like to expose <code>Foo</code> in a public property, but I do not want the consumers of the property to be able to alter <code>Foo</code>... It should however be alterable internally by <code>Bar</code>, i.e. I can't make the field <code>readonly</code>. </p> <p>So what I would like is:</p> <pre><code> private _Foo; public Foo { get { return readonly _Foo; } } </code></pre> <p>...which is of course not valid. I could just return a clone of <code>Foo</code> (assumming that it is <code>IClonable</code>), but this is not obvious to the consumer. Should I change the name of the property to <code>FooCopy</code>?? Should it be a <code>GetCopyOfFoo</code> method instead? What would you consider best practice? Thanks!</p> http://stackoverflow.com/questions/657419/viewing-all-event-handlers-associated-with-a-button/657563#657563 1 Answer by Joel in Gö for Viewing all event handlers associated with a Button? Joel in Gö 2009-03-18T09:40:15Z 2009-03-18T10:51:04Z <p>Using Resharper, I do this using Shift-F12, which shows a tree view of all usages (including usages via an interface). Without Resharper, it is probably simplest to use text search as Tyalis suggests.</p> http://stackoverflow.com/questions/58649/how-to-get-the-exif-data-from-a-file-using-c/636622#636622 3 Answer by Joel in Gö for How to get the EXIF data from a file using C# Joel in Gö 2009-03-11T22:24:46Z 2009-03-11T22:24:46Z <p>Here is a link to another <a href="http://stackoverflow.com/questions/280003/how-do-i-retrieve-the-properties-of-a-photo-taken-on-a-digital-camera-using-net/636606#636606">similar SO question</a>, which has an answer pointing to this good article on <a href="http://www.vsj.co.uk/dotnet/display.asp?id=649" rel="nofollow">"Reading, writing and photo metadata"</a> in .Net.</p> http://stackoverflow.com/questions/280003/how-do-i-retrieve-the-properties-of-a-photo-taken-on-a-digital-camera-using-net/636606#636606 1 Answer by Joel in Gö for How do I retrieve the properties of a photo taken on a digital camera using .NET? Joel in Gö 2009-03-11T22:18:57Z 2009-03-11T22:18:57Z <p>Links to simliar StackOverflow questions: <a href="http://stackoverflow.com/questions/58649/how-to-get-the-exif-data-from-a-file-using-c">here</a>, <a href="http://stackoverflow.com/questions/42017/what-is-the-best-exif-library-for-net">here</a> and <a href="http://stackoverflow.com/questions/226973/how-to-edit-exif-data-in-net">here</a>.</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/100628#100628 1 Answer by Joel in Gö for Favorite Visual Studio keyboard shortcuts Joel in Gö 2008-09-19T09:04:28Z 2009-03-11T02:08:33Z <p><kbd>Ctrl</kbd>+<kbd>M</kbd><em>,</em> <kbd>Ctrl</kbd>+<kbd>O</kbd> : collapse to definitions. I use it all the time together with #regions<br /><br /> (despite <a href="http://www.codinghorror.com/blog/archives/001147.html" rel="nofollow">what Jeff says</a>) to get an overview of the code on my screen.</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/100600#100600 1 Answer by Joel in Gö for Favorite Visual Studio keyboard shortcuts Joel in Gö 2008-09-19T08:57:24Z 2009-03-10T23:02:47Z <p><kbd>Ctrl</kbd>+<kbd>F10</kbd><br /><br /> run to cursor when debugging. Looked for this for ages before I found the keyboard shortcut...</p> http://stackoverflow.com/questions/1782918/access-to-creatingcontrols-installercontrol-initializecomponent-is-not-possi Comment by Joel in Gö on Access to "CreatingControls.InstallerControl.InitializeComponent ()" is not possible because of the security level Joel in Gö 2009-11-23T12:41:15Z 2009-11-23T12:41:15Z &quot;failed to access blah.deblah....() because of the security level&quot;. http://stackoverflow.com/questions/217578/point-in-polygon-aka-hit-test/217588#217588 Comment by Joel in Gö on Point in Polygon aka hit test Joel in Gö 2009-11-20T13:38:30Z 2009-11-20T13:38:30Z I would love a ref for the curvigons too. http://stackoverflow.com/questions/1673208/why-does-serializationinfo-not-have-trygetvalue-methods/1673250#1673250 Comment by Joel in Gö on Why does SerializationInfo not have TryGetValue methods? Joel in Gö 2009-11-04T11:48:59Z 2009-11-04T11:48:59Z cool; this doesn't seem to be documented in the VS2008 documentation. http://stackoverflow.com/questions/1673208/why-does-serializationinfo-not-have-trygetvalue-methods Comment by Joel in Gö on Why does SerializationInfo not have TryGetValue methods? Joel in Gö 2009-11-04T11:43:19Z 2009-11-04T11:43:19Z well maybe they're here :P http://stackoverflow.com/questions/1587502/how-to-get-visualstudio-2010-cool-tools-without-spending-12-000 Comment by Joel in Gö on How to get VisualStudio 2010 cool tools without spending $12,000 Joel in Gö 2009-10-19T09:58:53Z 2009-10-19T09:58:53Z good idea! I'll wait until I can find an official MS list of which tools are in which VS version. http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1486464#1486464 Comment by Joel in Gö on How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features? Joel in Gö 2009-09-28T11:27:09Z 2009-09-28T11:27:09Z true enough; I must admit having lost the odd pane in VS myself :) http://stackoverflow.com/questions/619396/read-only-property-accessor-in-c Comment by Joel in Gö on "Read only" Property Accessor in C# Joel in Gö 2009-08-30T20:59:12Z 2009-08-30T20:59:12Z Related question: <a href="http://stackoverflow.com/questions/681287/how-to-make-a-reference-type-property-readonly" rel="nofollow" title="how to make a reference type property readonly">stackoverflow.com/questions/681287/&hellip;</a> http://stackoverflow.com/questions/798036/how-to-decide-between-c-static-and-non-static-methods/798089#798089 Comment by Joel in Gö on How to decide between C# static and non-static methods? Joel in Gö 2009-08-28T10:15:55Z 2009-08-28T10:15:55Z So say I have a class Polygon, and want to calculate various (many!) things about it (centre of mass, distance to another polygon, etc). Where should these methods live? If I have a different class for each type of calculation, doesn't it make eg discoverability via IntelliSense very difficult? http://stackoverflow.com/questions/1048871/how-to-change-the-format-of-specified-lines-in-a-richtextbox/1048916#1048916 Comment by Joel in Gö on How to change the format of specified lines in a RichTextBox Joel in Gö 2009-06-29T08:50:41Z 2009-06-29T08:50:41Z that gets me the lines; but how can I tell the RichtTextBox to highlight the lines I want, for example? I can only set SelectedText by character number, not by line...? http://stackoverflow.com/questions/803242/understanding-events-and-event-handlers-in-c/803320#803320 Comment by Joel in Gö on understanding events and event handlers in C# Joel in Gö 2009-06-11T11:12:11Z 2009-06-11T11:12:11Z And now can anyone explain why the event is called EventHandler?? Of all the confusing naming conventions, this is the worst... http://stackoverflow.com/questions/317335/why-can-i-not-return-a-listfoo-if-asked-for-a-listifoo/317405#317405 Comment by Joel in Gö on Why can I not return a List<Foo> if asked for a List<IFoo> ? Joel in Gö 2009-05-20T12:33:03Z 2009-05-20T12:33:03Z There are other reasons for using interfaces than just if I am intending for there to be different implementations. http://stackoverflow.com/questions/6557/in-c-why-cant-a-liststring-object-be-stored-in-a-listobject-variable Comment by Joel in Gö on In C#, why can't a List<string> object be stored in a List<object> variable Joel in Gö 2009-05-20T12:25:12Z 2009-05-20T12:25:12Z More or less duplicate: <a href="http://stackoverflow.com/questions/317335/why-can-i-not-return-a-listfoo-if-asked-for-a-listifoo" rel="nofollow" title="why can i not return a listfoo if asked for a listifoo">stackoverflow.com/questions/317335/&hellip;</a> http://stackoverflow.com/questions/876508/what-is-the-best-way-to-check-two-listt-lists-for-equality-in-c Comment by Joel in Gö on What is the best way to check two List<T> lists for equality in C# Joel in Gö 2009-05-18T07:06:38Z 2009-05-18T07:06:38Z Similar question: <a href="http://stackoverflow.com/questions/308476/how-to-find-out-whether-two-icollectiont-collections-contain-the-same-objects" rel="nofollow" title="how to find out whether two icollectiont collections contain the same objects">stackoverflow.com/questions/308476/&hellip;</a> http://stackoverflow.com/questions/767715/trying-to-make-a-dialog-window-remember-its-last-position/767732#767732 Comment by Joel in Gö on Trying to make a dialog window remember its last position Joel in Gö 2009-04-20T10:44:42Z 2009-04-20T10:44:42Z thanks, that was what I was looking for. http://stackoverflow.com/questions/755382/i-want-to-delete-all-bin-and-obj-folders-to-force-all-projects-to-rebuild-everyth/755387#755387 Comment by Joel in Gö on I want to delete all bin and obj folders to force all projects to rebuild everything Joel in Gö 2009-04-16T09:49:49Z 2009-04-16T09:49:49Z In my experience, &quot;clean&quot; is often not good enough.