User John Saunders - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:48:50Z http://stackoverflow.com/feeds/user/76337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576 4 Answer by John Saunders for Refactoring a working project John Saunders 2009-12-08T23:20:18Z 2009-12-09T04:02:51Z <p>First, create a suite of automated unit tests, and confirm you have high code coverage (70% or more). During refactoring, you will run those tests very frequently, in order to convince yourself (and Management) that you haven't broken anything.</p> <p>No unit tests = no refactoring.</p> <p><hr></p> <p>Let me change my mind a little. You don't need unit tests - you need high code coverage from tests that <em>will</em> be run frequently, as you change the code. These could be automated unit tests, or automated functional tests.</p> <p>I do not believe that manual tests are an adequate substitute. They are much less likely to be run frequently during the refactoring process. Refactoring is much less likely to succeed without the constant reassurance that the code has not been broken in the process of fixing it.</p> http://stackoverflow.com/questions/1865382/can-anyone-explain-to-me-what-is-the-meaning-of-the-boolean-parameter-of-the-syst/1867492#1867492 4 Answer by John Saunders for Can anyone explain to me what is the meaning of the boolean parameter of the System.Xml.XmlDictionaryWriter.WriteNode(XmlReader, bool) method? John Saunders 2009-12-08T14:54:39Z 2009-12-09T02:16:34Z <p>An XML Schema can define certain attributes as having default values. I think this is referring to those attributes - should they be returned, with their default values, when they are not explicitly specified?</p> <p><hr></p> <p>I have confirmed this. I created the following schema:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xs:schema id="ElementWithDefaultAttributes" targetNamespace="http://tempuri.org/ElementWithDefaultAttributes.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/ElementWithDefaultAttributes.xsd" xmlns:mstns="http://tempuri.org/ElementWithDefaultAttributes.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" &gt; &lt;xs:complexType name="HasDefaultAttributesType"&gt; &lt;xs:sequence&gt; &lt;xs:element name="Inner"/&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="default1" default="value1" type="xs:string"/&gt; &lt;xs:attribute name="nodefault" type="xs:string"/&gt; &lt;xs:attribute name="default2" default="value2" type="xs:string"/&gt; &lt;/xs:complexType&gt; &lt;xs:element name="HasDefaultAttributes" type="mstns:HasDefaultAttributesType"/&gt; &lt;/xs:schema&gt; </code></pre> <p>I read the following document through an <code>XmlReader</code> configured with the schema:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;HasDefaultAttributes xmlns="http://tempuri.org/ElementWithDefaultAttributes.xsd" nodefault="none"&gt; &lt;Inner&gt;text&lt;/Inner&gt; &lt;/HasDefaultAttributes&gt; </code></pre> <p>Despite this, when I used <code>XmlDictionaryWriter.WriteNode(reader, true)</code>, I got the following result:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-16"?&gt; &lt;HasDefaultAttributes nodefault="none" default1="value1" default2="value2" xmlns="http://tempuri.org/ElementWithDefaultAttributes.xsd"&gt; &lt;Inner&gt;text&lt;/Inner&gt; &lt;/HasDefaultAttributes&gt; </code></pre> <p>Code:</p> <pre><code>public static XDocument DefaultAttributes() { var nt = new NameTable(); var schemas = new XmlSchemaSet(nt); using ( var schemaText = File.OpenText( @"..\..\XmlDictionaryWriter\ElementWithDefaultAttributes.xsd")) { var schema = XmlSchema.Read(schemaText, ValidationEventHandler); schemas.Add(schema); } var settings = new XmlReaderSettings { ValidationType = ValidationType.Schema, Schemas = schemas }; settings.ValidationEventHandler += ValidationEventHandler; using ( var dataText = File.OpenText( @"..\..\XmlDictionaryWriter\HasDefaultAttributes.xml")) { using (var outputStream = new MemoryStream()) { using ( var xdw = System.Xml.XmlDictionaryWriter.CreateTextWriter( outputStream, Encoding.UTF8, false)) { using (var reader = XmlReader.Create(dataText, settings)) { while (reader.Read()) { xdw.WriteNode(reader, true); } } } outputStream.Position = 0; using (var output = new StreamReader(outputStream)) { var doc = XDocument.Load(output); return doc; } } } } </code></pre> http://stackoverflow.com/questions/1870474/visual-studio-2008-class-designer-associations/1870620#1870620 0 Answer by John Saunders for Visual Studio 2008 Class Designer - associations John Saunders 2009-12-08T23:28:10Z 2009-12-09T01:13:22Z <p>You should clarify. What do you mean "Class A is a property of Class B"? Do you mean that Class B has a property of type "A"?</p> <p>That is not an association in UML terms - it's a dependency. In fact, all of your examples are dependencies, and not associations.</p> <p><hr></p> <p>Do you mean:</p> <pre><code>public class ClassA {} public class ClassB { public ClassA Property1 {get;set;} } </code></pre> <p>If this is what you mean, then I would read it as</p> <blockquote> <p>Class B has a property named "Property1". Property1 is of type "ClassA".</p> </blockquote> <p>In UML, this is not an association - it's a dependency.</p> <p><hr></p> <p>I'll concede that there is a subset of the set of properties which do correspond directly to associations. In fact, my example above is a member of that subset.</p> <p>A counter-example (and what I was thinking about) is:</p> <pre><code>public class ClassA {} public class ClassB { public ClassA Property1 { get {/* perform some arbitrary calculation, then return the result */} set {} } } </code></pre> <p>I apologize for thinking about the general case, and not the specific case.</p> <p>The real answer to the original question has already been given: the Class Designer is a Class Designer, not a UML Class Diagram tool. It uses a notation similar to that of a UML Class Diagram, but it is not a tool for producing a Class Diagram - it is a tool for designing a .NET class.</p> <p>Contrast this with the UML Class Diagram available in Visual Studio 2010, which is UML first, and class design second.</p> http://stackoverflow.com/questions/1870867/how-to-use-asp-net-list-view-control-of-framework-3-5-into-framework-2-0/1870903#1870903 2 Answer by John Saunders for how to use asp.net list view control of framework 3.5 into framework 2.0 ? John Saunders 2009-12-09T00:40:38Z 2009-12-09T00:40:38Z <p>The ListView control was introduced in .NET 3.5. It cannot be used with .NET 2.0.</p> http://stackoverflow.com/questions/1868550/are-nhibernate-and-xml-webservices-asmx-a-good-match/1869455#1869455 2 Answer by John Saunders for Are NHibernate and XML Webservices (.asmx) a good match? John Saunders 2009-12-08T20:01:27Z 2009-12-08T20:01:27Z <p>I don't know NHibernate, but want to remind you that you should be using WCF for new web service development, unless you are stuck in the past (.NET 2.0). Microsoft now considers ASMX web services to be "legacy technology", and you can imagine what that means.</p> http://stackoverflow.com/questions/1868087/asp-net-itemplate-with-templateinstance-multiple/1868092#1868092 0 Answer by John Saunders for ASP.NET ITemplate with TemplateInstance.Multiple John Saunders 2009-12-08T16:24:56Z 2009-12-08T16:34:33Z <p>Look at documentation of creating a data-bound templated control.</p> <p>Unfortunately, the best documentation I've found is from .NET 1.1: <a href="http://msdn.microsoft.com/en-us/library/aa719971%28VS.71%29.aspx" rel="nofollow">Developing a Templated Data-Bound Control</a>.</p> <p><hr></p> <p>Note from MSDN:</p> <blockquote> <p>This TemplateInstanceAttribute class is optional. If a template property is not extended with a TemplateInstanceAttribute class, the default value, the Multiple field, is used.</p> </blockquote> <p>So any <code>ITemplate</code> example that does not use the <code>TemplateInstanceAttribute</code> is using <code>TemplateInstance.Multiple</code>.</p> http://stackoverflow.com/questions/1868044/cant-create-directory-via-asmx-web-service/1868066#1868066 0 Answer by John Saunders for Can't create directory via asmx web service. John Saunders 2009-12-08T16:21:37Z 2009-12-08T16:21:37Z <p>If you're getting an access denied error, then it's an access denied error, period. It doesn't matter that it's happening from a web service. Diagnose it as you would diagnose any other access denied error.</p> http://stackoverflow.com/questions/1868009/speed-up-matrix-addition-in-c/1868048#1868048 2 Answer by John Saunders for Speed up Matrix Addition in C# John Saunders 2009-12-08T16:19:17Z 2009-12-08T16:19:17Z <p>I recommend that you profile this code and find out what's taking the most time.</p> <p>You may find that it's the subscripting operation, in which case you might want to change your data structures from:</p> <pre><code>long sumOfPixelValues[n,m]; long sumOfPixelValuesSquared[n,m]; </code></pre> <p>to</p> <pre><code>struct Sums { long sumOfPixelValues; long sumOfPixelValuesSquared; } Sums sums[n,m]; </code></pre> <p>This would depend on what you find once you profile the code.</p> http://stackoverflow.com/questions/1867957/which-file-locks-can-be-ignored-as-a-rule-of-thumb/1868010#1868010 0 Answer by John Saunders for Which file locks can be ignored ... as a rule of thumb? John Saunders 2009-12-08T16:15:42Z 2009-12-08T16:15:42Z <p>You might decide not to report locks on hidden or system files (or both).</p> http://stackoverflow.com/questions/1867285/which-files-under-service-references-belong-in-source-control-visual-studio/1867476#1867476 0 Answer by John Saunders for Which files under Service References belong in source control. (Visual Studio) John Saunders 2009-12-08T14:52:37Z 2009-12-08T14:52:37Z <p>All of those files are source files, so they all belong under source control.</p> http://stackoverflow.com/questions/1864905/how-to-resolve-500-internal-server-error/1864916#1864916 0 Answer by John Saunders for How to resolve 500 Internal Server Error ? John Saunders 2009-12-08T06:05:47Z 2009-12-08T06:05:47Z <p>If your server is running Windows, then look in the event log and see what server error occurred.</p> http://stackoverflow.com/questions/1864810/session-variables-web-services-asp-net-and-c/1864833#1864833 2 Answer by John Saunders for Session Variables, Web Services, ASP.NET, and C# John Saunders 2009-12-08T05:36:28Z 2009-12-08T05:36:28Z <p>Every web service call occurs on a different instance of the web service class. Your <code>reservations</code> variable cannot be used to maintain state between calls, since it's an instance variable.</p> <p>You're better off making your service be stateless. However, for a case like this, you should store the shopping cart into a database. That way, the cart won't be lost on a system failure.</p> http://stackoverflow.com/questions/1864236/c-handling-terminate-signal-in-tcp-handler-thread/1864295#1864295 2 Answer by John Saunders for C#: Handling terminate signal in TCP handler thread? John Saunders 2009-12-08T02:58:34Z 2009-12-08T02:58:34Z <p>See <a href="http://msdn.microsoft.com/en-us/library/fx6588te.aspx" rel="nofollow">Asynchronous Server Socket Example</a> to learn how to do this the ".NET way", without creating new threads for each request.</p> http://stackoverflow.com/questions/1864080/list-of-interfaces-vs-list-of-derived-type-cannot-convert-expression-type-to-r/1864098#1864098 0 Answer by John Saunders for List of Interfaces vs. List of Derived Type - Cannot Convert Expression Type to Return Type John Saunders 2009-12-08T01:46:30Z 2009-12-08T01:46:30Z <p><code>IQueryable&lt;ICoupon&gt;</code> is not derived from <code>IList&lt;ICoupon&gt;</code>.</p> http://stackoverflow.com/questions/1863732/how-iis-requests-are-parallelized-using-comet/1863748#1863748 1 Answer by John Saunders for How IIS requests are parallelized using COMET? John Saunders 2009-12-08T00:05:43Z 2009-12-08T00:05:43Z <p>You should not be blocking incoming requests at all. If the data you need are not ready, then return an empty response, or perhaps return an error code.</p> http://stackoverflow.com/questions/1861049/use-xmlserializer-to-add-a-namespace-without-a-prefix/1863620#1863620 0 Answer by John Saunders for Use XmlSerializer to add a namespace without a prefix John Saunders 2009-12-07T23:25:46Z 2009-12-07T23:25:46Z <p>You have to use <code>[XmlElementAttribute]</code>, not <code>[DataContractAttribute]</code>, if you wish to use the XML Serializer.</p> http://stackoverflow.com/questions/1863215/xml-character-causing-problems/1863240#1863240 2 Answer by John Saunders for XML '&' character causing problems John Saunders 2009-12-07T22:03:14Z 2009-12-07T23:14:56Z <p>How did you create such XML? I bet you created it using string manipulation, as no self-respecting XML API would have produced such invalid XML. </p> <p>This is why to create XML using XML APIs instead of string APIs.</p> <p><hr></p> <pre><code>var keyElement = new XElement( "key", @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\CNXT_MODEM_PCI_VEN_8086&amp;DEV"); </code></pre> <p>Problem solved.</p> http://stackoverflow.com/questions/1863244/free-or-commercial-code-analysis-service-for-visual-basic/1863259#1863259 3 Answer by John Saunders for Free or commercial code analysis service for Visual Basic John Saunders 2009-12-07T22:06:31Z 2009-12-07T22:06:31Z <p>I believe that Code Analysis works on VB.NET code as well.</p> <p><hr></p> <p>I just tested it, and it does work.</p> http://stackoverflow.com/questions/1863186/when-evaluating-visual-studio-2010-should-you-install-the-ultimate-version-or-t/1863229#1863229 1 Answer by John Saunders for When evaluating Visual Studio 2010, should you install the Ultimate version, or the version you think your company is most likely to purchase? John Saunders 2009-12-07T22:02:05Z 2009-12-07T22:02:05Z <p>The new features of VS2010 are so much more powerful than you might expect, that I strongly recommend evaluating the Ultimate version. It may very well be the case that an organization which would never have spent the money for VS2008 Team Architecture edition might be so impressed by the new Architecture-level features of VS2010, that they may decide to buy a single Ultimate license for 2010.</p> http://stackoverflow.com/questions/1862734/wsdl-xmlns-problems-with-netbeans-and-wsimport/1862766#1862766 0 Answer by John Saunders for wsdl xmlns problems with NetBeans and wsimport John Saunders 2009-12-07T20:44:11Z 2009-12-07T20:44:11Z <p>It looks like they don't support SOAP 1.1, only SOAP 1.2.</p> http://stackoverflow.com/questions/1853700/where-do-i-download-vbrun60sp6-exe-which-installs-visual-basic-6-0-sp6-run-tim/1853715#1853715 2 Answer by John Saunders for Where do I download : VBRun60sp6.exe (which installs Visual Basic 6.0 SP6 run-time files) ? John Saunders 2009-12-05T22:43:19Z 2009-12-07T16:31:35Z <p>Download from:</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=7B9BA261-7A9C-43E7-9117-F673077FFB3C&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=7B9BA261-7A9C-43E7-9117-F673077FFB3C&amp;displaylang=en</a></p> <p>If you can't find, it check out this search: <a href="http://social.msdn.microsoft.com/Search/en-US?query=VBRun60sp6.exe" rel="nofollow">http://social.msdn.microsoft.com/Search/en-US?query=VBRun60sp6.exe</a></p> http://stackoverflow.com/questions/1439041/tool-for-transforming-excel-files-swapping-columns-basic-string-manipulation-e/1856429#1856429 0 Answer by John Saunders for Tool for transforming Excel files? (swapping columns, basic string manipulation etc) John Saunders 2009-12-06T20:01:33Z 2009-12-06T20:01:33Z <p>You didn't say which database you're importing into, or what tool you use. If you were using SQL Server, then I'd recommend using SQL Server Integration Services (SSIS) to manipulate the spreadsheets during the import process.</p> http://stackoverflow.com/questions/1852773/wcf-proxy-generated-from-wsdl-proxy-method-returns-null/1854722#1854722 1 Answer by John Saunders for WCF proxy generated from WSDL, proxy method returns null. John Saunders 2009-12-06T08:11:16Z 2009-12-06T08:11:16Z <p>You'll have to give specifics about the Java service in order to resolve this. However, I suspect that the Java service is using message parts defined with the <code>type</code> attribute. These do not conform to WS-I Basic Profile 1 because there is ambiguity about which namespace should be used for the elements of the message. Some services will use the namespace of the type, while others will (correctly) use the namespace of the web service itself.</p> <p>Using the <code>element</code> attribute removes the ambiguity, and is therefore preferred.</p> <p>Please post a snippet of the WSDL containing one of the messages you're having trouble with. When you then compare the definition of the message with what you're seeing on the wire, and then compare that to the details of the proxy class that's meant to consume the message, I believe you'll see what I mean. The proxy class is expecting one namespace, but on the wire, a different namespace is being used.</p> http://stackoverflow.com/questions/1854602/windows-forms-app-output-text/1854607#1854607 2 Answer by John Saunders for Windows Forms App, output text? John Saunders 2009-12-06T07:01:48Z 2009-12-06T07:01:48Z <p>You could use a TextBox, or a ListBox, or just about anything else.</p> http://stackoverflow.com/questions/1853748/asp-net-templatefield-itemtemplate/1853756#1853756 1 Answer by John Saunders for asp.net TemplateField.ItemTemplate John Saunders 2009-12-05T22:55:19Z 2009-12-05T23:52:23Z <p>You would usually do this sort of thing in the markup:</p> <pre><code>&lt;TemplateField ...&gt; &lt;ItemTemplate&gt; &lt;asp:TextBox .../&gt; &lt;/ItemTemplate&gt; &lt;/TemplateField&gt; </code></pre> <p>or do the same thing using the designer.</p> <p><hr></p> <p>Example follows. The commented-out markup produces the same thing as the codebehind does:</p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="&lt;%$ ConnectionStrings:AdventureWorksConnectionString %&gt;" SelectCommand="SELECT Person.Contact.FirstName, Person.Contact.LastName FROM Person.Contact INNER JOIN HumanResources.Employee ON Person.Contact.ContactID = HumanResources.Employee.ContactID WHERE (Person.Contact.LastName LIKE N'A%') ORDER BY Person.Contact.LastName, Person.Contact.FirstName"&gt; &lt;/asp:SqlDataSource&gt; &lt;asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1"&gt; &lt;%-- &lt;ItemTemplate&gt; &lt;asp:Label runat="server" ID="lblLast"&gt;Name:&amp;nbsp;&lt;/asp:Label&gt; &lt;asp:Label runat="server" ID="lblName" Text='&lt;%# DataBinder.Eval(Container.DataItem, "LastName")+", "+DataBinder.Eval(Container.DataItem, "FirstName") %&gt;' /&gt; &lt;/ItemTemplate&gt;--%&gt; &lt;SeparatorTemplate&gt; &lt;hr /&gt; &lt;/SeparatorTemplate&gt; &lt;/asp:Repeater&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Codebehind:</p> <pre><code>using System; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : Page { protected override void OnInit(EventArgs e) { base.OnInit(e); Repeater1.ItemTemplate = new TheItemTemplate(); } protected void Page_Load(object sender, EventArgs e) { DataBind(); } } public class TheItemTemplate : ITemplate { #region Implementation of ITemplate public void InstantiateIn(Control container) { var lblLast = new Label {ID = "lblLast", Text = "Name: "}; container.Controls.Add(lblLast); var lblName = new Label {ID = "lblName"}; lblName.DataBinding += delegate(object sender, EventArgs e) { var theLabel = (Label) sender; var dataItem = DataBinder.GetDataItem(theLabel.BindingContainer); theLabel.Text = DataBinder.Eval(dataItem, "LastName") + ", " + DataBinder.Eval(dataItem, "FirstName"); }; container.Controls.Add(lblName); } #endregion } </code></pre> http://stackoverflow.com/questions/1853621/what-are-effective-strategies-for-documenting-a-large-legacy-net-platform-as-the/1853708#1853708 1 Answer by John Saunders for What are effective strategies for documenting a large legacy .Net platform as the main developer just quit? John Saunders 2009-12-05T22:40:40Z 2009-12-05T22:40:40Z <p>Before documenting the system, you need to understand it. I just watched <a href="http://microsoftpdc.com/Sessions/FT08" rel="nofollow">Code Visualization, UML, and DSLs</a>, a video from the recent PDC 2009 event. It shows how to use the new tools in VS2010 to help understand a code base.</p> <p>One interesting thing is that these tools work with code from .NET 1.0 onwards. They also don't need the source code in order to be useful.</p> <p>I recommend downloading VS2010 beta 2 (Ultimate Edition), and installing it either on a VM or on a non-production machine. Use these tools to help you to understand the code base. You can then use the documentation method of your choice to document your new understanding.</p> http://stackoverflow.com/questions/1851745/web-service-in-asp-net/1851750#1851750 1 Answer by John Saunders for Web Service in asp.net John Saunders 2009-12-05T09:58:06Z 2009-12-05T09:58:06Z <p>SSL is not required.</p> <p>Also, you should be using WCF for all new development.</p> http://stackoverflow.com/questions/1851379/what-is-the-best-way-to-generate-unique-session-ids/1851389#1851389 0 Answer by John Saunders for What is the best way to generate unique session IDs? John Saunders 2009-12-05T06:49:35Z 2009-12-05T06:49:35Z <p>Use a GUID. How you generate one will depend on the platform you're running on.</p> http://stackoverflow.com/questions/1846953/system-componentmodel-dataannotations/1851161#1851161 0 Answer by John Saunders for System.ComponentModel.DataAnnotations John Saunders 2009-12-05T04:54:47Z 2009-12-05T04:54:47Z <p><a href="http://social.msdn.microsoft.com/Search/en-US?query=data+annotations" rel="nofollow">http://social.msdn.microsoft.com/Search/en-US?query=data+annotations</a></p> <p>I understand that times have changed, so maybe you're not ashamed you didn't do the above search. Maybe it doesn't actually indicate laziness.</p> http://stackoverflow.com/questions/1850649/gridview-datasourceid-with-multiple-datasources/1850692#1850692 1 Answer by John Saunders for Gridview DataSourceID with Multiple Datasources? John Saunders 2009-12-05T01:09:55Z 2009-12-05T01:09:55Z <p>A single control cannot use multiple sources. </p> <p>You could create a custom data source control that accepts two data sources and produces output from both of them.</p> http://stackoverflow.com/questions/1873998/answering-which-method-called-me-at-the-run-time-in-net-or-is-callstack-data Comment by John Saunders on Answering "Which method called me?" at the run-time in .NET? Or is CallStack data readable by the code? John Saunders 2009-12-09T13:47:45Z 2009-12-09T13:47:45Z A better question than &quot;is it possible&quot; is, &quot;is it desirable&quot;. I have never seen a valid reason to do this - only invalid reasons. Please say what you're trying to accomplish. http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576 Comment by John Saunders on Refactoring a working project John Saunders 2009-12-09T03:57:19Z 2009-12-09T03:57:19Z We disagree, that's all. I don't believe refactoring is possible or practical without the ability to pretty near &quot;prove&quot; that the change does not break the code. If you can do that without unit tests, then go ahead. Otherwise, I hope you'll choose a term other than &quot;refactoring&quot; to mean &quot;trying to improve the quality of the code without being able to determine whether you've broken it&quot;. http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870781#1870781 Comment by John Saunders on Refactoring a working project John Saunders 2009-12-09T03:06:25Z 2009-12-09T03:06:25Z @Mike: I know they're used by &quot;agile&quot; people, but &quot;unit tests + refactoring&quot; does not imply &quot;agile&quot;. &quot;agile&quot; may imply &quot;unit tests + refactoring&quot;, but not the other way around. http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576 Comment by John Saunders on Refactoring a working project John Saunders 2009-12-09T03:05:19Z 2009-12-09T03:05:19Z I don't know what you mean. The OP may very well have been thinking of actual refactoring, but without knowing of the dependency on unit tests. http://stackoverflow.com/questions/1865382/can-anyone-explain-to-me-what-is-the-meaning-of-the-boolean-parameter-of-the-syst/1865403#1865403 Comment by John Saunders on Can anyone explain to me what is the meaning of the boolean parameter of the System.Xml.XmlDictionaryWriter.WriteNode(XmlReader, bool) method? John Saunders 2009-12-09T02:23:45Z 2009-12-09T02:23:45Z it means that It will not only copy the attributes explicitly specified, but also those with default values. http://stackoverflow.com/questions/1865382/can-anyone-explain-to-me-what-is-the-meaning-of-the-boolean-parameter-of-the-syst/1867474#1867474 Comment by John Saunders on Can anyone explain to me what is the meaning of the boolean parameter of the System.Xml.XmlDictionaryWriter.WriteNode(XmlReader, bool) method? John Saunders 2009-12-09T02:23:09Z 2009-12-09T02:23:09Z <code>xmlns</code> is not what they mean by &quot;default attribute&quot;. See my answer. http://stackoverflow.com/questions/1369694/slow-web-service-and-wcf-service-calls-from-windows-7/1871209#1871209 Comment by John Saunders on Slow web service (and WCF service) calls from Windows 7 John Saunders 2009-12-09T02:21:17Z 2009-12-09T02:21:17Z -1: isn't that exactly what the previous answer said? http://stackoverflow.com/questions/1871227/why-am-i-getting-a-code-signing-error Comment by John Saunders on Why am I getting a code signing error? John Saunders 2009-12-09T02:20:19Z 2009-12-09T02:20:19Z English, please, and please include some code, not just the error messages. http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576 Comment by John Saunders on Refactoring a working project John Saunders 2009-12-09T02:19:28Z 2009-12-09T02:19:28Z The question uses the term &quot;refactoring&quot;, which has a fairly specific meaning. If the OP really means &quot;arbitrarily changing code to improve readability&quot;, then he/she should say so. http://stackoverflow.com/questions/1870474/visual-studio-2008-class-designer-associations/1870620#1870620 Comment by John Saunders on Visual Studio 2008 Class Designer - associations John Saunders 2009-12-09T02:18:24Z 2009-12-09T02:18:24Z Well, actually, my example of a field-like property could be considered as an association. IOW, an association could be generated into code as a field, or as a property, depending on taste. This is not true for all properties, but for a simple one that's equivalent to a field, it is. http://stackoverflow.com/questions/1871042/how-you-can-respect-the-website-that-help-to-get-your-questions-answer Comment by John Saunders on how you can respect the website that help to get your question's answer? John Saunders 2009-12-09T01:19:33Z 2009-12-09T01:19:33Z @Paul: It's not a real question, but why do you think it's so bad his account should be disabled? http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870781#1870781 Comment by John Saunders on Refactoring a working project John Saunders 2009-12-09T01:02:17Z 2009-12-09T01:02:17Z Note that I'm not saying the code cannot be changed. I'm saying that such changes are not refactoring. They're the same thing we used to do back in the day before Fowler's book popularized the term. In fact, it's possible to change code without unit tests, if your functional test suite is good enough. But how often are you going to run your functional tests? How many changes will have been made before you realize you broke something weeks ago? http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576 Comment by John Saunders on Refactoring a working project John Saunders 2009-12-09T01:00:12Z 2009-12-09T01:00:12Z @Andrew: to me, the term &quot;refactoring&quot; means making a number of small changes which have no effect on the functionality of the code, but which may improve the code in terms of quality, etc. Any change which may break the code cannot, in my opinion, be called &quot;refactoring&quot;. If you have inadequate unit tests, you cannot know whether you're breaking the code. Thus, you're not refactoring. Feel free to change the code, but don't use the term &quot;refactoring&quot; and associate that term with the number of bugs you're introducing. http://stackoverflow.com/questions/1870474/visual-studio-2008-class-designer-associations/1870620#1870620 Comment by John Saunders on Visual Studio 2008 Class Designer - associations John Saunders 2009-12-09T00:45:40Z 2009-12-09T00:45:40Z I believe you may be confusing dependency and association. I have never seen return type modeled using an association. http://stackoverflow.com/questions/1870474/visual-studio-2008-class-designer-associations/1870620#1870620 Comment by John Saunders on Visual Studio 2008 Class Designer - associations John Saunders 2009-12-09T00:41:42Z 2009-12-09T00:41:42Z Please quote from the standard how an association can be used to model the return type of a property, or method.