User Rob Cooper - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:06:26Z http://stackoverflow.com/feeds/user/832 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists 21 Should programmers be excellent typists? Rob Cooper 2008-08-28T07:10:20Z 2009-12-14T06:58:19Z <p>OK, I know this is kind of subjective, and I apologise for that, but hear me out.</p> <p>I have to admit, like most geeks, I got into computing at an early age, this means I <em>never</em> even <strong>considered things such as typing speed</strong> etc.</p> <p>Now, I was chatting to my colleagues the other day, and we all admit, while we can type reasonably fast, for the most part, <strong>we are terrible typists</strong>! This makes me chuckle, as all [good] programmers try to always hone their skills in solving kickass problems, but what about the more mundane typing?</p> <p>So the question is:</p> <p><strong>Would you <em>expect</em> a programmer to be an <em>excellent</em> typist?</strong></p> <p>And to spice it up a bit (and allow more scope for a "good answer"):</p> <ul> <li>Can you touch type?</li> <li>Do you have a very high accuracy level?</li> <li>Are you working to improve it?</li> <li>Do you use any tools/software to do so?</li> </ul> http://stackoverflow.com/questions/8625/generic-type-conversion-from-string 8 Generic Type Conversion FROM String Rob Cooper 2008-08-12T09:13:23Z 2009-12-02T14:11:47Z <p>Hi Guys,</p> <p>Here is the problem I am having, I have a class that I want to use to store "properties" for another class, these properties simply have a name and a value. Ideally, what I would like is to be able to add <em>typed</em> properties, so that the "value" returned is always of the type that I want it to be. </p> <p>The type should always be a primitive. This class subclasses an abstract class which basically stores the name and value as string. The idea being that this subclass will add some type-safety to the base class (as well as saving me on some conversion).</p> <p>So, I have created a class which is (roughly) this:</p> <pre><code>public class TypedProperty&lt;DataType&gt; : Property { public DataType TypedValue { get { // Having problems here! } set { base.Value = value.ToString();} } } </code></pre> <p>So the question is:</p> <p><strong>Is there a "generic" way to convert from string back to a primitive?</strong> </p> <p>I can't seem to find any generic interface that links the conversion across the board (something like <em>ITryParsable</em> would have been ideal!). <hr /></p> <p><strong>Update:</strong> </p> <p><strong>@lubos hasko</strong> - You understood very well! Your code seems to work like a charm. I can access both the base <em>.Value</em> property (which returns the string) and the subclasses <em>.TypedValue</em> property which always returns the type specified in <em>DataType</em> - Very many thanks, answer accepted!</p> <p><strong>@Jon Limjap</strong> - Thanks for the suggestion, while this would have worked, the problem is that you would still lose the "hard" type of it (i.e. bool, int, whatever) since the return type would become <em>IConvertibleFromString</em> which sadly won't tie in with my original goal.</p> <p><strong>@dbkk</strong> - I have not tried your solution since lubos' worked so well, however I did have concerns about the speed of it (due to reflection) although I am not sure on the <em>actual</em> impact of it. Thank you for the input though.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them 249 What are Code Smells? What is the best way to correct them? Rob Cooper 2008-09-22T11:34:19Z 2009-11-19T04:15:56Z <p>OK, so I know <em>what</em> a code smell <em>is</em>, and the <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">Wikipedia Article</a> is pretty clear in its definition:</p> <blockquote> <p>In computer programming, code smell is any symptom in the source code of a computer program that indicates something may be wrong. It generally indicates that the code should be refactored or the overall design should be reexamined. The term appears to have been coined by Kent Beck on WardsWiki. Usage of the term increased after it was featured in Refactoring. Improving the Design of Existing Code.</p> </blockquote> <p>I know it also provides a list of common code smells. But I thought it would be great if we could get clear list of not only <strong>what code smells there are</strong>, but also <strong>how to correct them.</strong></p> <h2>Some Rules</h2> <p>Now, this is going to be a little subjective in that there are differences to languages, programming style etc. So lets lay down some ground rules: <hr /></p> <h2>** ONE SMELL PER ANSWER PLEASE! &amp; ADVISE ON HOW TO CORRECT! **</h2> <ul> <li>See <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them#114386">this answer</a> for a good display of what this thread should be!</li> </ul> <h3>DO NOT downmod if a smell doesn't apply to your language or development methodology</h3> <p>We are all different.</p> <h3>DO NOT just quickly smash in as many as you can think of</h3> <p>Think about the smells you want to list and get a <strong>good</strong> idea down on how to work around.</p> <h3>DO downmod answers that just look rushed</h3> <p>For example "<em>dupe code - remove dupe code</em>". Let's makes it <strong>useful</strong> (e.g. Duplicate Code - Refactor into separate methods or even classes, use these links for help on these common.. etc. etc.).</p> <h3>DO upmod answers that you would add yourself</h3> <p>If you wish to expand, then answer with your thoughts linking to the original answer (if it's detailed) or comment if its a minor point.</p> <h3>DO format your answers!</h3> <p>Help others to be able to read it, use code snippets, headings and markup to make key points stand out!</p> http://stackoverflow.com/questions/24043/study-strategies 12 Study Strategies Rob Cooper 2008-08-23T06:38:19Z 2009-11-13T16:27:38Z <p>OK, I am not sure if I should be posting this question since it is not <em>obviously</em> a programming question per se.. However, I will throw myself to the wolves, and if deemed inappropriate, I will happily delete ^_^</p> <p>As you can see on my profile, I am studying towards the <a href="http://www.microsoft.com/learning/mcp/mcad/default.mspx" rel="nofollow">MCAD</a> (yes I know it is soon to be obsolete, which is why I am studying so hard!). One thing I find is that some of the buzzwords can be difficult to remember, as well as the little quirks/processes to do certain tasks.</p> <p>Now this may sound like a stupid question, but I know everyone is different and answers may vary, and there may be a little gem answer in here that may help others (including myself!). And I am sure we all agree that most developers are almost <em>constantly</em> studying so we <strong>should be working to improve our technique right?</strong></p> <p>So,</p> <h3>What study strategy do you have? How do you revise, learn and memorise new topics?</h3> <p>As an example, heres my current "process":</p> <ul> <li>List the chapters that I need to cover for the given exam.</li> <li>Buy another book (normally one of the <a href="http://rads.stackoverflow.com/amzn/click/0789728222" rel="nofollow">Kalani</a> books in my case).</li> <li>I then work my way through the chapters (studying from various sources to get different angles).</li> <li>These chapters will obviously have labs/exercises to complete, which I do.</li> <li>If I have any major weaknesses, I repeat the relevant chapters..</li> </ul> <p>Now one of the problems is that there can just be so much content, and retention can be hard.. I have tried several things from "flash cards" just grinding the subject to help me remember, but these can get kinda monotonous..</p> <p>So, people of StackOverflow, unleash thy study strategies! :D</p> http://stackoverflow.com/questions/87200/mocking-webresponses-from-a-webrequest 7 Mocking WebResponse's from a WebRequest Rob Cooper 2008-09-17T20:21:04Z 2009-10-18T21:50:01Z <p>I have finally started messing around with creating some apps that work with RESTful web interfaces, however, I am concerned that I am hammering their servers every time I hit F5 to run a series of tests..</p> <p>Basically, I need to get a series of web responses so I can test I am parsing the varying responses correctly, rather than hit their servers every time, I thought I could do this once, save the XML and then work locally.</p> <p>However, I don't see how I can "mock" a WebResponse, since (AFAIK) they can only be instantiated by <strong>WebRequest.GetResponse</strong></p> <p>How do you guys go about mocking this sort of thing? Do you? I just really don't like the fact I am hammering their servers :S I dont want to change the code <em>too</em> much, but I expect there is a elegant way of doing this..</p> <h2>Update Following Accept</h2> <p>Will's answer was the slap in the face I needed, I knew I was missing a fundamental point!</p> <ul> <li>Create an Interface that will return a proxy object which represents the XML.</li> <li>Implement the interface twice, on that uses WebRequest, the other that returns static "responses".</li> <li>The interface implmentation then either instantiates the return type based on the response, or the static XML.</li> <li>You can then pass the required class when testing or at production to the service layer.</li> </ul> <p>Once I have the code knocked up, I'll paste some samples.</p> <p>Thanks Will :)</p> http://stackoverflow.com/questions/464456/httpcontext-current-session-vs-global-asax-this-session 4 "HttpContext.Current.Session" vs Global.asax "this.Session" Rob Cooper 2009-01-21T08:37:23Z 2009-09-24T13:21:49Z <p>Recently, while working on some code for an ASP.NET project at work. We needed a tracking util to take basic metrics on user activity (page hit count etc) we would track them in <a href="http://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.aspx" rel="nofollow"><code>Session</code></a>, then save the data to DB via <code>Session_End</code> in <a href="http://msdn.microsoft.com/en-us/library/1xaas8a2.aspx" rel="nofollow"><code>Global.asax</code></a>.</p> <p>I began hacking away, the initial code worked fine, updating the DB on each page load. I wanted to remove this DB hit on each request though and just rely on <code>Session_End</code> to store all the data.</p> <p>All of the tracking code is encapsulated in the <code>Tracker</code> class, including properties that essentially wrap the Session variables.</p> <p><strong>The problem</strong> is that when I executed <code>Tracker.Log()</code> in the <code>Session_End</code> method, the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpcontext.current.aspx" rel="nofollow"><code>HttpContext.Current.Session</code></a> in the Tracker code was failing with a <a href="http://msdn.microsoft.com/en-us/library/system.nullreferenceexception.aspx" rel="nofollow"><code>NullReferenceException</code></a>. Now, this makes sense since <a href="http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx" rel="nofollow"><code>HttpContext</code></a> always relates to the <strong>current</strong> request, and of course in <code>Session_End</code>, there is no request.</p> <p>I know that <code>Global.asax</code> has a <code>Session</code> property which returns a <code>HttpSessionState</code> that actually seems to work fine (I ended up injecting it in to the tracker)..</p> <p><strong>But I am curious, how the hell can I get the same reference to the <code>HttpSessionState</code> object used by <code>Global.asax</code> from <em>outside</em> of <code>Global.asax</code>?</strong></p> <p>Thanks in advance guys, I appreciate the input. :)</p> http://stackoverflow.com/questions/594132/are-there-any-plugins-to-html-encode-text-in-the-vs-text-editor 0 Are There Any Plugins to HTML Encode Text in the VS Text Editor? Rob Cooper 2009-02-27T09:47:27Z 2009-09-22T18:21:52Z <p>This may be a simple question since it seems such an obvious tool for any web dev..</p> <p>I currently use a free web-based thing when I need to encode strings, but I was curious to know if anyone knows of a plugin for VS that will allow you to HTML encode text in the Text Editor?</p> http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/891781#891781 93 Answer by Rob Cooper for What is your longest-held programming assumption that turned out to be incorrect? Rob Cooper 2009-05-21T07:31:14Z 2009-08-31T14:38:14Z <p>Smart People are Always Smarter than Me.</p> <p>I can really beat myself up when I make mistakes and often get told off for self-deprecating. I used to look up in awe at a lot of developers and often assumed that since they knew more than me on <em>X</em>, they knew more than me.</p> <p>As I have continued to gain experience and meet more people, I have started to realise that oftentimes, while they know more than me in a particular subject, they are not necessarily <em>smarter</em> than me/you.</p> <p>Moral of the story: <strong>Never underestimate what you can bring to the table.</strong></p> http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types 19 XML Serialization and Inherited Types Rob Cooper 2008-08-21T14:30:53Z 2009-08-31T08:12:22Z <p>Hi Guys, following on from my <a href="http://beta.stackoverflow.com/questions/19454/enforce-attribute-decoration-of-classesmethods" rel="nofollow">previous question</a> I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!).</p> <p>The problem I have is that I have a collection, which is of a abstract base class type, which is populated by the concrete derived types.</p> <p>I thought it would be fine to just add the XML attributes to all of the classes involved and everything would be peachy. Sadly, thats not the case!</p> <p>So I have done some digging on Google and I now understand <em>why</em> it's not working.. In that <strong>the <em>XmlSerializer</em> is in fact doing some clever reflection in order to serialize objects to/from XML, and since its based on the abstract type, it cannot figure out what the hell it's talking to</strong>. Fine.</p> <p>I did come across <a href="http://www.codeproject.com/KB/XML/xmlserializerforunknown.aspx" rel="nofollow">this page</a> on CodeProject, which looks like it may well help a lot (yet to read/consume fully), but I thought I would like to bring this problem to the StackOverflow table too, to see if you have any neat hacks/tricks in order to get this up and running in the quickest/lightest way possible :)</p> <p>There seems to be a lot of "Animal/Mammal", "Car/Bike/Truck" examples but not a lot of fresh ideas!</p> <p>Thanks a lot people :)</p> <h3>EDIT:</h3> <p>One thing I should also add is that I <strong>DO NOT</strong> want to go down the <em>XmlInclude</em> route.. There is simply too much coupling with it, and this area of the system is under heavy development, so the it would be a real maintenence headache!</p> http://stackoverflow.com/questions/100106/obfuscation-puzzle-can-you-figure-out-what-this-perl-function-does/100202#100202 0 Answer by Rob Cooper for Obfuscation Puzzle: Can you figure out what this Perl function does? Rob Cooper 2008-09-19T07:16:28Z 2009-08-28T04:06:23Z <h3>Why don't people answer less and downvote the "question" more? ;)</h3> http://stackoverflow.com/questions/33994/what-code-snippet-editor-do-you-use 3 What Code Snippet Editor Do You Use? Rob Cooper 2008-08-29T05:15:15Z 2009-08-12T03:52:13Z <p>Part of my "sort your development life out, Rob" push has been me taking note of the fact that I do not have a library of <a href="http://aspnet.4guysfromrolla.com/articles/122105-1.aspx" rel="nofollow">code snippets</a> (and <a href="http://www.codinghorror.com/blog/archives/000419.html" rel="nofollow">Jeff did a post too</a>). Now I have a few, but I know I should really be working towards creating my own library to boost my productivity.</p> <p>One thing I have started doing is leaving my code snippet editor open (<a href="http://www.codeplex.com/snippy" rel="nofollow">Snippy</a>) and whenever I realise I am writing common code, I stop and make a snippet for it.</p> <p>I was just wondering <strong>what editors you guys use?</strong> There may be a better one out there and if I am missing out I so want to get in on that! :)</p> http://stackoverflow.com/questions/1190848/build-server-ci-setup-using-latest-component-in-application 0 Build Server/CI Setup - Using Latest Component in Application Rob Cooper 2009-07-27T21:52:01Z 2009-07-28T05:53:47Z <p>I have finally started to take the time out to grok the continuous integration process. I have started putting together a build server at home and trying to grok how to deal with different situations in building.</p> <p><strong>If I have component "A", which is used by application "B" - what is the "best practice" for telling the build server to compile "A" and then compile "B" using the newly compiled "A"</strong></p> <p>Obviously, I am looking to see how I integrate working components, I see lots of database examples but nothing on working with DLL's etc.</p> <p>Thanks a lot!</p> http://stackoverflow.com/questions/100549/is-there-minimum-expected-period-of-employment 16 Is There Minimum "Expected" Period of Employment? Rob Cooper 2008-09-19T08:47:18Z 2009-07-12T08:14:09Z <p><strong>First Off:</strong> If any of my colleagues are reading this, I am not thinking of leaving anytime soon :D</p> <p>Following a discussion with a friend, attrition rates within software companies (or companies with programmers) came up. Here in the UK it is often "frowned upon" if you move jobs in under 2 years since people think you basically have a "bad attitude" to work.</p> <p>However, I get the impression that a lot of other developers I know actually move jobs quite a lot. The thing is, I think developers develop (or want to develop) quicker than the business, so it doesn't surprise me that this occurs.</p> <p><strong>What sort of minimum term do you think is expected for a job? Do YOU move jobs often? What is the "general concensus" in your locale with regards to "minimum term"?</strong></p> <h2>NOTE: Contractual obligations aside.</h2> http://stackoverflow.com/questions/1078885/where-does-visual-studio-remember-which-folders-are-namespace-providers 1 Where Does Visual Studio Remember Which Folders are "Namespace Providers"? Rob Cooper 2009-07-03T11:10:27Z 2009-07-03T13:11:33Z <p>OK, this may be really simple, but it is Friday and it has been a long week. I can't seem to find an answer for the life of me.</p> <p>Basically, I have a project in which the Namespace Provider property has been set. When a colleague gets the up to date code from the repository, these properties do not seem to appear at all? (i.e. there is no "Namespace Provider" entry in the properties window)..</p> <p>What could be causing this? I am thinking he may need an update for VS2008 or something? I have <strong>never</strong> had issues with this/like this before!</p> <p>Ideas? :)</p> <p>Thanks a lot!</p> <h2>Update</h2> <p>We have now verified that the machine has VS2008 SP1 - Still no dice :(</p> <p>.. and we have completely deleted all the files in the folder and done another "GET" from the repo (crappy VSS) - I have a distinct feeling that there are some residual "web site" project files that were not deleted from the repo, and are causing VS to misinterpret the project type somehow..</p> <p>Will let you know once I can prove :)</p> http://stackoverflow.com/questions/138227/getting-started-with-pair-programming 27 Getting Started with Pair Programming Rob Cooper 2008-09-26T08:02:52Z 2009-06-29T22:43:04Z <p>I found out yesterday that due to demands from the powers that be, I am being pulled from my current project to help out a colleague with some work.</p> <p>Now, he is a great guy, and while it sucks I will have to put my little baby down, I am looking forward to working with him.</p> <p>We have both previously expressed an interest in pair programming, but it is completely new to both of us, so I was wondering:</p> <h2>Those that pair program, what advice would you give to someone getting started with it?</h2> http://stackoverflow.com/questions/31799/preventing-xml-serialization-of-ienumerable-and-icollectiont-inherited-types 2 Preventing XML Serialization of IEnumerable and ICollection<T> & Inherited Types Rob Cooper 2008-08-28T07:36:40Z 2009-06-26T10:45:02Z <p><strong>NOTE: <em>XMLIgnore</em> is NOT the answer!</strong></p> <p>OK, so following on from my question on <a href="http://beta.stackoverflow.com/questions/20084/xml-serialization-and-inherited-types" rel="nofollow">XML Serialization and Inherited Types</a>, I began integrating that code into my application I am working on, stupidly thinking all will go well..</p> <p>I ran into problems with a couple of classes I have that implement <em>IEnumerable</em> and <em>ICollection&lt;T&gt;</em></p> <p>The problem with these is that when the XMLSerializer comes to serialize these, it views them as an external property, and instead of using the property we would like it to (i.e. the one with our <em>AbstractXmlSerializer</em> ) it comes here and falls over (due to the type mismatch), pretty much putting us back to square one. You cannot decorate these methods with the <strong>XmlIgnore</strong> attribute either, so we cannot stop it that way.</p> <p>My current solution is to remove the interface implementation (in this current application, its no real big deal, just made the code prettier).</p> <p><strong>Do I need to swallow my pride on this one and accept it cant be done?</strong> I know I have kinda pushed and got more out of the XmlSerializer than what was expected of it :) <hr /></p> <h3>Edit</h3> <p>I should also add, I am currently working in framework 2. <hr /></p> <h3>Update</h3> <p>I have accepted <a href="http://beta.stackoverflow.com/questions/31799/preventing-xml-serialization-of-ienumerable-and-icollectiont-inherited-types#31810" rel="nofollow">lomaxx's answer</a>. In my scenario I cannot actually do this, but I do know it will work. Since their have been no other suggestions, I ended up removing the interface implementation from the code.</p> http://stackoverflow.com/questions/349503/asp-net-session-state-service-information/349621#349621 4 Answer by Rob Cooper for ASP.net session state service information Rob Cooper 2008-12-08T13:57:28Z 2009-06-26T01:51:08Z <ul> <li><a href="http://blogs.msdn.com/tims/archive/2003/11/21/57453.aspx" rel="nofollow">ASP.NET Session State: Architectural and Performance Considerations (Blog Post)</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms972429.aspx" rel="nofollow">ASP.NET Session State (MSDN)</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms998530.aspx" rel="nofollow">Improving .NET Application Performance and Scalability (MSDN)</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/87069683%28vs.71%29.aspx" rel="nofollow">Session State (MSDN)</a></li> </ul> <p>Which may or may not be of use to you..</p> <p>In short, it works like this:</p> <p><strong>InProc Session State</strong> is the fastest, however it is also in-process, meaning it is not shared (read "<em>no good for web farms</em>"), and is lost if the process crashes.</p> <p><strong>State Service (aspnet_state.exe)</strong> is still pretty damn quick, but there is some overhead due to the marshalling between the worker process and the service itself. Can be good because IP addresses can be passed in the config, meaning <strong>it can run on its own machine</strong>. It is also out-of-process from the worker process, meaning it can survive a process crash. Since it can run on a single machine, state can be shared provided all clients use the same machine.</p> <p><strong>Sql Server</strong> (or another custom provider) - Tends (not always) to be the slowest of them all, especially due to what could potentially be a lot more disk I/O. However, this is also one of the more robust solutions since the state can be persisted to disk, meaning not only can it survive a process crash on the web server, but it can survive a server crash itself (once the DB is back online, the state is restored). Coupled with clustering this can provide a rock-solid session system.</p> http://stackoverflow.com/questions/985452/xmlserializer-serializing-sub-objects/985491#985491 0 Answer by Rob Cooper for XmlSerializer serializing sub objects Rob Cooper 2009-06-12T07:41:11Z 2009-06-12T11:12:44Z <p>This sounds like a similar issue I was having.. I finally cracked it and posted everything on the question <a href="http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types/985495#985495">here</a>..</p> <p><a href="http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types/985495#985495">XML Serialization and Inherited Types</a></p> <p>Is that of any use?</p> http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types/985495#985495 4 Answer by Rob Cooper for XML Serialization and Inherited Types Rob Cooper 2009-06-12T07:42:23Z 2009-06-12T07:42:23Z <h2>Problem Solved!</h2> <p>OK, so I finally got there (admittedly with a <strong>lot</strong> of help from <a href="http://www.codeproject.com/KB/XML/xmlserializerforunknown.aspx" rel="nofollow">here</a>!).</p> <p>So summarise:</p> <h3>Goals:</h3> <ul> <li>I didn't want to go down the <em>XmlInclude</em> route due to the maintenence headache.</li> <li>Once a solution was found, I wanted it to be quick to implement in other applications.</li> <li>Collections of Abstract types may be used, as well as individual abstract properties.</li> <li>I didn't really want to bother with having to do "special" things in the concrete classes.</li> </ul> <h3>Identified Issues/Points to Note:</h3> <ul> <li><em>XmlSerializer</em> does some pretty cool reflection, but it is <em>very</em> limited when it comes to abstract types (i.e. it will only work with instances of the abstract type itself, not subclasses).</li> <li>The Xml attribute decorators define how the XmlSerializer treats the properties its finds. The physical type can also be specified, but this creates a <strong>tight coupling</strong> between the class and the serializer (not good).</li> <li>We can implement our own XmlSerializer by creating a class that implements <em>IXmlSerializable</em> .</li> </ul> <h2>The Solution</h2> <p>I created a generic class, in which you specify the generic type as the abstract type you will be working with. This gives the class the ability to "translate" between the abstract type and the concrete type since we can hard-code the casting (i.e. we can get more info than the XmlSerializer can).</p> <p>I then implemented the <em>IXmlSerializable</em> interface, this is pretty straight forward, but when serializing we need to ensure we write the type of the concrete class to the XML, so we can cast it back when de-serializing. It is also important to note it must be <strong>fully qualified</strong> as the assemblies that the two classes are in are likely to differ. There is of course a little type checking and stuff that needs to happen here.</p> <p>Since the XmlSerializer cannot cast, we need to provide the code to do that, so the implicit operator is then overloaded (I never even knew you could do this!).</p> <p>The code for the AbstractXmlSerializer is this:</p> <pre><code>using System; using System.Collections.Generic; using System.Text; using System.Xml.Serialization; namespace Utility.Xml { public class AbstractXmlSerializer&lt;AbstractType&gt; : IXmlSerializable { // Override the Implicit Conversions Since the XmlSerializer // Casts to/from the required types implicitly. public static implicit operator AbstractType(AbstractXmlSerializer&lt;AbstractType&gt; o) { return o.Data; } public static implicit operator AbstractXmlSerializer&lt;AbstractType&gt;(AbstractType o) { return o == null ? null : new AbstractXmlSerializer&lt;AbstractType&gt;(o); } private AbstractType _data; /// &lt;summary&gt; /// [Concrete] Data to be stored/is stored as XML. /// &lt;/summary&gt; public AbstractType Data { get { return _data; } set { _data = value; } } /// &lt;summary&gt; /// **DO NOT USE** This is only added to enable XML Serialization. /// &lt;/summary&gt; /// &lt;remarks&gt;DO NOT USE THIS CONSTRUCTOR&lt;/remarks&gt; public AbstractXmlSerializer() { // Default Ctor (Required for Xml Serialization - DO NOT USE) } /// &lt;summary&gt; /// Initialises the Serializer to work with the given data. /// &lt;/summary&gt; /// &lt;param name="data"&gt;Concrete Object of the AbstractType Specified.&lt;/param&gt; public AbstractXmlSerializer(AbstractType data) { _data = data; } #region IXmlSerializable Members public System.Xml.Schema.XmlSchema GetSchema() { return null; // this is fine as schema is unknown. } public void ReadXml(System.Xml.XmlReader reader) { // Cast the Data back from the Abstract Type. string typeAttrib = reader.GetAttribute("type"); // Ensure the Type was Specified if (typeAttrib == null) throw new ArgumentNullException("Unable to Read Xml Data for Abstract Type '" + typeof(AbstractType).Name + "' because no 'type' attribute was specified in the XML."); Type type = Type.GetType(typeAttrib); // Check the Type is Found. if (type == null) throw new InvalidCastException("Unable to Read Xml Data for Abstract Type '" + typeof(AbstractType).Name + "' because the type specified in the XML was not found."); // Check the Type is a Subclass of the AbstractType. if (!type.IsSubclassOf(typeof(AbstractType))) throw new InvalidCastException("Unable to Read Xml Data for Abstract Type '" + typeof(AbstractType).Name + "' because the Type specified in the XML differs ('" + type.Name + "')."); // Read the Data, Deserializing based on the (now known) concrete type. reader.ReadStartElement(); this.Data = (AbstractType)new XmlSerializer(type).Deserialize(reader); reader.ReadEndElement(); } public void WriteXml(System.Xml.XmlWriter writer) { // Write the Type Name to the XML Element as an Attrib and Serialize Type type = _data.GetType(); // BugFix: Assembly must be FQN since Types can/are external to current. writer.WriteAttributeString("type", type.AssemblyQualifiedName); new XmlSerializer(type).Serialize(writer, _data); } #endregion } } </code></pre> <p>So, from there, how do we tell the XmlSerializer to work with our serializer rather than the default? We must pass our type within the Xml attributes type property, for example:</p> <pre><code>[XmlRoot("ClassWithAbstractCollection")] public class ClassWithAbstractCollection { private List&lt;AbstractType&gt; _list; [XmlArray("ListItems")] [XmlArrayItem("ListItem", Type = typeof(AbstractXmlSerializer&lt;AbstractType&gt;))] public List&lt;AbstractType&gt; List { get { return _list; } set { _list = value; } } private AbstractType _prop; [XmlElement("MyProperty", Type=typeof(AbstractXmlSerializer&lt;AbstractType&gt;))] public AbstractType MyProperty { get { return _prop; } set { _prop = value; } } public ClassWithAbstractCollection() { _list = new List&lt;AbstractType&gt;(); } } </code></pre> <p>Here you can see, we have a collection and a single property being exposed, and all we need to do is add the <em>type</em> named parameter to the Xml declaration, easy! :D</p> <p><strong>NOTE: If you use this code, I would really appreciate a shout-out. It will also help drive more people to the community :)</strong></p> <p>Now, but unsure as to what to do with answers here since they all had their pro's and con's. I'll upmod those that I feel were useful (no offence to those that weren't) and close this off once I have the rep :)</p> <p>Interesting problem and good fun to solve! :)</p> http://stackoverflow.com/questions/971599/using-flash-with-asp-net-yay-or-nay/971615#971615 4 Answer by Rob Cooper for Using FLASH with ASP.NET - YAY or NAY? Rob Cooper 2009-06-09T18:06:32Z 2009-06-09T18:12:29Z <p>I have used Flash in ASP.NET websites plenty.</p> <p>Software should always boil down to the best tool for the job, if Flash is the way you need to go for your RIA, then so be it.</p> <p>Remember, ASP.NET is nothing "new/different" ultimately, it is just a fancy HTML generator.</p> <p>Therefore, to use flash, you simply use the plain old HTML <a href="http://kb2.adobe.com/cps/415/tn%5F4150.html" rel="nofollow">OBJECT and EMBED tags</a> to place the Flash on the page.</p> <p>The benefit of using things like ASP.NET (or any other framework) is that you can encapsulate the EMBED logic to use things like <a href="http://code.google.com/p/swfobject/" rel="nofollow">swfObject</a>.</p> http://stackoverflow.com/questions/968666/full-trust-in-asp-net-web-application-is-it-ok/968680#968680 3 Answer by Rob Cooper for Full trust in ASP.NET web application - is it OK? Rob Cooper 2009-06-09T07:38:12Z 2009-06-09T08:13:23Z <p>Full trust gives the application <strong>a lot</strong> of power:</p> <p>From <a href="http://msdn.microsoft.com/en-us/library/tkscy493.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/tkscy493.aspx</a></p> <blockquote> <p>Specifies unrestricted permissions. Grants the ASP.NET application permissions to access any resource that is subject to operating system security. All privileged operations are supported. This setting is named Unrestricted in the AspNetHostingPermissionLevel enumeration.</p> </blockquote> <p>So I would say avoid it if at all possible, especially if using code from other sources.</p> <p>I view it as the equivalent to running Windows apps as Admin.</p> <p><strong>Be sure to read the comment from blowdart with regards to how ACL's affect permissions</strong></p> <p>I guess what I meant is that while it is not the <em>same</em> as running as Admin, it's a case of "more permissions than required" - I always keep in mind as a rule of thumb you should only ever give the minimum required for the application to function.</p> http://stackoverflow.com/questions/964724/issue-with-aspcontentplaceholder-and-code-blocks/968362#968362 4 Answer by Rob Cooper for Issue with asp:ContentPlaceHolder and code blocks Rob Cooper 2009-06-09T05:48:41Z 2009-06-09T05:48:41Z <p>Hi Keith,</p> <p>As promised, I said I would take a look. Sorry I never uploaded last night, long day and needed to hit the hay!</p> <p>So, I was checking out the <code>ContentPlaceHolder.Controls</code> collection differences between how they are populated. I noticed that when the code block is used, it flips to read only. At any other point, it will simply be empty or populated.</p> <p>I therefore decided to throw in an extension method to check it for us:</p> <h3>ContentPlaceHolderExtensions.cs</h3> <pre><code>public static class ContentPlaceHolderExtensions { public static bool ContainsControlsOrCodeBlock(this ContentPlaceHolder placeHolder) { if (placeHolder.Controls.Count &gt; 0) return true; return placeHolder.Controls.IsReadOnly; } } </code></pre> <p>And then check this in the master page:</p> <h3>Site.Master</h3> <pre><code>&lt;asp:ContentPlaceHolder ID="Content1" runat="server" /&gt; &lt;asp:ContentPlaceHolder ID="Content2" runat="server" /&gt; &lt;asp:ContentPlaceHolder ID="Content3" runat="server" /&gt; &lt;div&gt;Content1: &lt;%= Content1.Controls.Count %&gt;&lt;/div&gt; &lt;div&gt;Content2: &lt;%= Content2.Controls.Count %&gt;&lt;/div&gt; &lt;div&gt;Content3: &lt;%= Content3.Controls.Count %&gt;&lt;/div&gt; &lt;div&gt;Content1 (Ex. Meth.): &lt;%= Content1.ContainsControlsOrCodeBlock() %&gt;&lt;/div&gt; &lt;div&gt;Content2 (Ex. Meth.): &lt;%= Content2.ContainsControlsOrCodeBlock() %&gt;&lt;/div&gt; &lt;div&gt;Content3 (Ex. Meth.): &lt;%= Content3.ContainsControlsOrCodeBlock() %&gt;&lt;/div&gt; </code></pre> <p>As proof-of-concept, I then added a content page:</p> <h3>Index.aspx</h3> <pre><code>&lt;asp:Content ContentPlaceHolderID="Content1" runat="server"&gt; Plain Text Content &lt;/asp:Content&gt; &lt;asp:Content ContentPlaceHolderID="Content2" runat="server"&gt; &lt;%= "Code block content" %&gt; &lt;/asp:Content&gt; </code></pre> <p>And all rendered as expected (I believe)..</p> <p>TBH, while it is not <em>perfect</em>.. I don't think we can get much more elegance in this situation. I am not sure how other control collections are set up in these different scenarios, so I only bolted on to the ContentPlaceHolder control.. Other templated controls may or may not work the same.</p> <p>Thoughts?</p> <p>You can download the project from <a href="http://code.google.com/p/robcthegeek/source/browse/#svn/trunk/stackoverflow/964724" rel="nofollow">here</a>:</p> <p><a href="http://code.google.com/p/robcthegeek/source/browse/#svn/trunk/stackoverflow/964724" rel="nofollow">http://code.google.com/p/robcthegeek/source/browse/#svn/trunk/stackoverflow/964724</a></p> http://stackoverflow.com/questions/965345/interface-design-explicit-or-implicit-inclusion/965378#965378 1 Answer by Rob Cooper for Interface Design - Explicit or Implicit Inclusion Rob Cooper 2009-06-08T15:12:46Z 2009-06-08T15:12:46Z <p>In terms of usability I would always vote <strong>implicit</strong>.</p> <p>However, I would rather do something (i.e. explicit) if the implicit implementation is stupid.</p> <p>Go for implicit, but test the hell out of it and make sure it pulls the right stuff at the right time. (IMO)</p> http://stackoverflow.com/questions/965347/how-can-i-temporary-turn-off-a-static-page/965365#965365 1 Answer by Rob Cooper for How can I temporary turn off a static page? Rob Cooper 2009-06-08T15:10:36Z 2009-06-08T15:10:36Z <p>If you want the page to no longer be served, why not just rename it to <code>file.html.disabled</code> or something? When you want to continue serving it again, rename it back?</p> http://stackoverflow.com/questions/964271/how-can-i-tell-whether-an-aspcontentplaceholder-has-been-populated-in-mvc/964371#964371 2 Answer by Rob Cooper for How can I tell whether an asp:ContentPlaceHolder has been populated in MVC? Rob Cooper 2009-06-08T11:04:38Z 2009-06-08T11:23:41Z <p>I did this by just checking myContent.Controls.Count.. However, you obviously need to take into consideration any default controls that might be added.</p> <p>For example, if you have your content placeholder defined as:</p> <pre><code>&lt;asp:ContentPlaceHolder ID="myContent" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; </code></pre> <p>Then you will get a <code>LiteralControl</code> in the controls collection containing "\r\n" (since the line break in the definition is parsed).</p> <p>So, if you remove that and define as:</p> <pre><code>&lt;asp:ContentPlaceHolder ID="myContent" runat="server"&gt;&lt;/asp:ContentPlaceHolder&gt; </code></pre> <p>Then you can do the check in the master page load:</p> <pre><code>if (myContent.Controls.Count &gt; 0) // do stuff when populated with content.. </code></pre> <p>Just make sure you test the code to make sure you are actually checking for content added by the content pages, and not any default content defined in the master.</p> <p><strong>UPDATE</strong></p> <p>Following edit saying this problem is MVC-only I can confirm I am <strong>unable to replicate</strong>. I used the same code as above in an MVC app and it worked exactly as expected &amp; described.</p> <p>Can you post some sample code of what you have in place?</p> <p>FYI - Here is the [working] code:</p> <h3>Site.Master</h3> <pre><code>&lt;asp:ContentPlaceHolder ID="myContent" runat="server"&gt;&lt;/asp:ContentPlaceHolder&gt; &lt;% if (myContent.Controls.Count &gt; 0) { %&gt; &lt;b&gt;Content Added!&lt;/b&gt; &lt;% } %&gt; </code></pre> <h3>Index.aspx</h3> <pre><code>&lt;asp:Content ContentPlaceHolderID="myContent" ID="myContent" runat="server"&gt; This will render and the "Content Added!" will also be rendered. &lt;/asp:Content&gt; &lt;%-- This will cause the "Content Added!" to be displayed but with no visual content --%&gt; &lt;asp:Content ContentPlaceHolderID="myContent" ID="myContent" runat="server"&gt; &lt;/asp:Content&gt; &lt;%-- This will NOT render the "Content Added!" since there is zero content between tags --%&gt; &lt;asp:Content ContentPlaceHolderID="myContent" ID="myContent" runat="server"&gt;&lt;/asp:Content&gt; </code></pre> http://stackoverflow.com/questions/891510/how-do-you-track-time-spent-working-on-a-project/891776#891776 0 Answer by Rob Cooper for How do you track time spent working on a project? Rob Cooper 2009-05-21T07:28:14Z 2009-05-21T07:28:14Z <p>I've started using the <a href="http://www.pomodorotechnique.com/" rel="nofollow">Pomodoro Technique</a>. The 25m timeboxes make it real easy to track time. At the end of the day while doing my review, I simply count the number of timeboxes completed on each project/assignment etc.</p> <p>I actually log my day to paper (and later read through them for a high-level review), but you could easily download the source code for <a href="http://code.google.com/p/pomodorotimer/" rel="nofollow">PomodoroTimer</a> and improve it to log data to a file etc.</p> http://stackoverflow.com/questions/851519/satellite-dll/851577#851577 1 Answer by Rob Cooper for Satellite DLL Rob Cooper 2009-05-12T07:32:12Z 2009-05-12T07:32:12Z <p>There are some great links and explanations on <a href="http://stackoverflow.com/questions/365569/what-is-a-satelite-assembly">this</a> question.</p> <p><a href="http://stackoverflow.com/questions/365569/what-is-a-satelite-assembly">http://stackoverflow.com/questions/365569/what-is-a-satelite-assembly</a></p> <p>Please search before posting a question in future, it was not difficult to find.</p> http://stackoverflow.com/questions/101366/dual-monitor-window-management-for-ms-windows 18 Dual Monitor Window Management for MS Windows Rob Cooper 2008-09-19T12:14:32Z 2009-05-05T12:02:35Z <p>I am sure I could get some great suggestions here since I am sure a large percentage of the StackOverflow user base could help me out here.</p> <p>Like most dev's I have dual monitor setup at work, and a gazillion windows open at the time, and often need to ping them back and forward between the two.</p> <p>Reaching for the mouse all the time, quite frankly, pisses me off! :@ :D</p> <h2>Can you guys recommend any good window managers for dual screen rigs?</h2> <p>I have seen many that are pretty poor at what they do.. It doesnt need to be anything fancy, pref just a shortcut to "send to other monitor" or something.</p> http://stackoverflow.com/questions/466430/what-is-your-tool-of-choice-for-creating-stubs 3 What is Your Tool-of-Choice for Creating Stubs? Rob Cooper 2009-01-21T18:28:53Z 2009-04-26T07:48:06Z <p>Following on from my last question "<a href="http://stackoverflow.com/questions/463278/what-is-a-stub">What is a "Stub"</a>, I would really like to sit down tonight and play more with creating stub objects.</p> <p><strong>What is your tool of choice for creating Stub objects?</strong> </p> <p>And for bonus points :)</p> <p>Can you also link to any good tutorials for getting started with them?</p> <p>Thanks a lot guys and girls, appreciated :)</p> <p><strong>FYI - I am using .NET (2.0 @ Work, 3.5 @ Home)</strong></p> http://stackoverflow.com/questions/104158/what-is-best-practice-for-comparing-two-instances-of-a-reference-type 7 What is "Best Practice" For Comparing Two Instances of a Reference Type? Rob Cooper 2008-09-19T18:07:02Z 2009-04-08T16:49:31Z <p>I came across this recently, up until now I have been happily overriding the equality operator (<strong>==</strong>) and/or <strong>Equals</strong> method in order to see if two references types actually contained the same <strong>data</strong> (i.e. two different instances that look the same).</p> <p>I have been using this even more since I have been getting more in to automated testing (comparing reference/expected data against that returned).</p> <p>While looking over some of the <a href="http://msdn.microsoft.com/en-us/library/ms229042(VS.80).aspx" rel="nofollow">coding standards guidelines in MSDN</a> I came across an <a href="http://msdn.microsoft.com/en-us/library/7h9bszxx(VS.80).aspx" rel="nofollow">article</a> that advises against it. Now I understand <em>why</em> the article is saying this (because they are not the same <em>instance</em>) but it does not answer the question:</p> <ol> <li><strong>What is the best way to compare two reference types?</strong></li> <li>Should we implement <a href="http://msdn.microsoft.com/en-us/library/system.icomparable.aspx" rel="nofollow">IComparable</a>? (I have also seen mention that this should be reserved for value types only).</li> <li>Is there some interface I don't know about?</li> <li>Should we just roll our own?!</li> </ol> <p>Many Thanks ^_^</p> <h2>Update</h2> <p>Looks like I had mis-read some of the documentation (it's been a long day) and overriding <a href="http://msdn.microsoft.com/en-us/library/336aedhh(VS.71).aspx" rel="nofollow">Equals</a> may be the way to go..</p> <blockquote> <p>If you are implementing reference types, you should consider overriding the Equals method on a reference type if your type looks like a base type such as a Point, String, BigNumber, and so on. Most reference types should not overload the <strong>equality</strong> operator, even <strong>if they override Equals</strong>. However, if you are implementing a reference type that is intended to have value semantics, such as a complex number type, you should override the equality operator.</p> </blockquote> http://stackoverflow.com/questions/43713/what-do-you-think-about-eiffel-programming-language/43732#43732 Comment by Rob Cooper on What do you think about eiffel programming language? Rob Cooper 2009-12-18T08:41:05Z 2009-12-18T08:41:05Z You are the second person to comment on an answer like this. THIS WAS CREATED OVER A YEAR AGO. Before any &quot;rules&quot; etc. existed. This answer is way down on the page (for a good reason). Also, at the time of writing, I was one of (relatively few) active participants who DID have the more &quot;mod-like&quot; abilities. People will not see it. No one cares. Please get out more. http://stackoverflow.com/questions/11263/do-you-know-any-patterns-for-gui-programming-not-patterns-on-designing-guis/11309#11309 Comment by Rob Cooper on Do you know any patterns for GUI programming? (Not patterns on designing GUIs) Rob Cooper 2009-12-18T08:38:37Z 2009-12-18T08:38:37Z Thanks for commenting on an answer that was created over a year ago (when I think SO may have still been in private beta). This was also before a lot of the &quot;rules&quot; were solidified. But I am sure the community really appreciates your useful comment. #fail http://stackoverflow.com/questions/87200/mocking-webresponses-from-a-webrequest Comment by Rob Cooper on Mocking WebResponse's from a WebRequest Rob Cooper 2009-07-31T10:48:20Z 2009-07-31T10:48:20Z Hi Nick, as in the Update. What I ended up doing is programming against an interface. I then implement the interface twice. One that returns static content, one that actually uses WebRequest. You can then UT the consumer, and then just use the actual safe in knowledge you have tested the consumer class. Always remember, &quot;don't test someone elses code&quot; (e.g. WebRequest). http://stackoverflow.com/questions/1190848/build-server-ci-setup-using-latest-component-in-application/1190955#1190955 Comment by Rob Cooper on Build Server/CI Setup - Using Latest Component in Application Rob Cooper 2009-07-27T22:17:59Z 2009-07-27T22:17:59Z Excellent answer, thanks David. Taking notes, will report back soon! http://stackoverflow.com/questions/1190848/build-server-ci-setup-using-latest-component-in-application/1190920#1190920 Comment by Rob Cooper on Build Server/CI Setup - Using Latest Component in Application Rob Cooper 2009-07-27T22:09:26Z 2009-07-27T22:09:26Z I will give this a go, thanks - very clear and concise :) http://stackoverflow.com/questions/1190848/build-server-ci-setup-using-latest-component-in-application/1190873#1190873 Comment by Rob Cooper on Build Server/CI Setup - Using Latest Component in Application Rob Cooper 2009-07-27T21:59:23Z 2009-07-27T21:59:23Z Do you have/can link to any examples where dependencies have been set up in a <i>build server</i> environment? Obviously VS (I'm a .NET dev) can have references, but they go out window on build server. http://stackoverflow.com/questions/42395/how-do-i-write-a-while-loop/42426#42426 Comment by Rob Cooper on How do I write a While loop Rob Cooper 2009-07-16T11:13:14Z 2009-07-16T11:13:14Z Thanks Stephan, well pointed out ;) http://stackoverflow.com/questions/1083948/why-is-it-dangerous-to-use-an-email-address-as-an-openid/1084004#1084004 Comment by Rob Cooper on Why is it dangerous to use an email address as an OpenID? Rob Cooper 2009-07-05T14:04:02Z 2009-07-05T14:04:02Z Why was this even accepted?! There is no real knowledge backing it and all I really got is a [factually incorrect] MS flame. Email insecure ONLY in MS-land?! FAIL. http://stackoverflow.com/questions/1078885/where-does-visual-studio-remember-which-folders-are-namespace-providers/1079296#1079296 Comment by Rob Cooper on Where Does Visual Studio Remember Which Folders are "Namespace Providers"? Rob Cooper 2009-07-03T13:22:24Z 2009-07-03T13:22:24Z I have gotten so used to Namespace Provider I had it in my head it was part of VS.. I R STUPID GEEK. http://stackoverflow.com/questions/1078885/where-does-visual-studio-remember-which-folders-are-namespace-providers/1079296#1079296 Comment by Rob Cooper on Where Does Visual Studio Remember Which Folders are "Namespace Providers"? Rob Cooper 2009-07-03T13:21:26Z 2009-07-03T13:21:26Z Thank you so much sir for slapping this stupid geek in the face with one line of knowledge that has made him feel like an absolute moron. You are indeed correct - &quot;Namespace Provider&quot; is listed under &quot;Resharper&quot;.. I have also just remembered I am the only with a R# license on the team.. I don't know if I want to laugh or cry. Thanks again :) http://stackoverflow.com/questions/1078885/where-does-visual-studio-remember-which-folders-are-namespace-providers/1079215#1079215 Comment by Rob Cooper on Where Does Visual Studio Remember Which Folders are "Namespace Providers"? Rob Cooper 2009-07-03T12:58:01Z 2009-07-03T12:58:01Z I thought you might have been on to something then, however (and sadly) I don't think this is the case.. May be on to something - will update Q. http://stackoverflow.com/questions/1078885/where-does-visual-studio-remember-which-folders-are-namespace-providers/1079193#1079193 Comment by Rob Cooper on Where Does Visual Studio Remember Which Folders are "Namespace Providers"? Rob Cooper 2009-07-03T12:45:16Z 2009-07-03T12:45:16Z Both of us are using VS2008 Pro with SP1. http://stackoverflow.com/questions/985452/xmlserializer-serializing-sub-objects/985491#985491 Comment by Rob Cooper on XmlSerializer serializing sub objects Rob Cooper 2009-06-12T11:13:38Z 2009-06-12T11:13:38Z Sorry Marc, just realised I incorrectly spelled your name. My apologies. http://stackoverflow.com/questions/985452/xmlserializer-serializing-sub-objects/985491#985491 Comment by Rob Cooper on XmlSerializer serializing sub objects Rob Cooper 2009-06-12T11:10:08Z 2009-06-12T11:10:08Z I have to be honest, I am unsure of where the code in my answer is failing you.. You can't get a clean solution out of the box just using XML Attributes, and as Mark [correctly] says, in cases like this implementing IXmlSerializable is a pain. Basically you need to roll your own little bit of serialization to handle the &quot;generic&quot; bit.. Have you reviewed the code in my answer? Is there anything I can help clarify? http://stackoverflow.com/questions/985401/how-do-i-fix-this-error-in-vs-2005-the-project-file-cannot-be-loaded-the-appli Comment by Rob Cooper on How do I fix this error in VS 2005? "The project file cannot be loaded. The application for project ... is not installed" Rob Cooper 2009-06-12T07:52:40Z 2009-06-12T07:52:40Z Please provide more information, help us to help you :)