User John Saunders - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T13:48:50Zhttp://stackoverflow.com/feeds/user/76337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#18705764Answer by John Saunders for Refactoring a working projectJohn Saunders2009-12-08T23:20:18Z2009-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#18674924Answer 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 Saunders2009-12-08T14:54:39Z2009-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><?xml version="1.0" encoding="utf-8"?>
<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"
>
<xs:complexType name="HasDefaultAttributesType">
<xs:sequence>
<xs:element name="Inner"/>
</xs:sequence>
<xs:attribute name="default1" default="value1" type="xs:string"/>
<xs:attribute name="nodefault" type="xs:string"/>
<xs:attribute name="default2" default="value2" type="xs:string"/>
</xs:complexType>
<xs:element name="HasDefaultAttributes" type="mstns:HasDefaultAttributesType"/>
</xs:schema>
</code></pre>
<p>I read the following document through an <code>XmlReader</code> configured with the schema:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<HasDefaultAttributes xmlns="http://tempuri.org/ElementWithDefaultAttributes.xsd"
nodefault="none">
<Inner>text</Inner>
</HasDefaultAttributes>
</code></pre>
<p>Despite this, when I used <code>XmlDictionaryWriter.WriteNode(reader, true)</code>, I got the following result:</p>
<pre><code><?xml version="1.0" encoding="utf-16"?>
<HasDefaultAttributes nodefault="none" default1="value1" default2="value2"
xmlns="http://tempuri.org/ElementWithDefaultAttributes.xsd">
<Inner>text</Inner>
</HasDefaultAttributes>
</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#18706200Answer by John Saunders for Visual Studio 2008 Class Designer - associationsJohn Saunders2009-12-08T23:28:10Z2009-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#18709032Answer by John Saunders for how to use asp.net list view control of framework 3.5 into framework 2.0 ?John Saunders2009-12-09T00:40:38Z2009-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#18694552Answer by John Saunders for Are NHibernate and XML Webservices (.asmx) a good match?John Saunders2009-12-08T20:01:27Z2009-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#18680920Answer by John Saunders for ASP.NET ITemplate with TemplateInstance.MultipleJohn Saunders2009-12-08T16:24:56Z2009-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#18680660Answer by John Saunders for Can't create directory via asmx web service.John Saunders2009-12-08T16:21:37Z2009-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#18680482Answer by John Saunders for Speed up Matrix Addition in C#John Saunders2009-12-08T16:19:17Z2009-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#18680100Answer by John Saunders for Which file locks can be ignored ... as a rule of thumb?John Saunders2009-12-08T16:15:42Z2009-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#18674760Answer by John Saunders for Which files under Service References belong in source control. (Visual Studio)John Saunders2009-12-08T14:52:37Z2009-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#18649160Answer by John Saunders for How to resolve 500 Internal Server Error ?John Saunders2009-12-08T06:05:47Z2009-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#18648332Answer by John Saunders for Session Variables, Web Services, ASP.NET, and C#John Saunders2009-12-08T05:36:28Z2009-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#18642952Answer by John Saunders for C#: Handling terminate signal in TCP handler thread?John Saunders2009-12-08T02:58:34Z2009-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#18640980Answer by John Saunders for List of Interfaces vs. List of Derived Type - Cannot Convert Expression Type to Return TypeJohn Saunders2009-12-08T01:46:30Z2009-12-08T01:46:30Z<p><code>IQueryable<ICoupon></code> is not derived from <code>IList<ICoupon></code>.</p>
http://stackoverflow.com/questions/1863732/how-iis-requests-are-parallelized-using-comet/1863748#18637481Answer by John Saunders for How IIS requests are parallelized using COMET?John Saunders2009-12-08T00:05:43Z2009-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#18636200Answer by John Saunders for Use XmlSerializer to add a namespace without a prefixJohn Saunders2009-12-07T23:25:46Z2009-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#18632402Answer by John Saunders for XML '&' character causing problemsJohn Saunders2009-12-07T22:03:14Z2009-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&DEV");
</code></pre>
<p>Problem solved.</p>
http://stackoverflow.com/questions/1863244/free-or-commercial-code-analysis-service-for-visual-basic/1863259#18632593Answer by John Saunders for Free or commercial code analysis service for Visual BasicJohn Saunders2009-12-07T22:06:31Z2009-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#18632291Answer 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 Saunders2009-12-07T22:02:05Z2009-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#18627660Answer by John Saunders for wsdl xmlns problems with NetBeans and wsimportJohn Saunders2009-12-07T20:44:11Z2009-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#18537152Answer by John Saunders for Where do I download : VBRun60sp6.exe (which installs Visual Basic 6.0 SP6 run-time files) ?John Saunders2009-12-05T22:43:19Z2009-12-07T16:31:35Z<p>Download from:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=7B9BA261-7A9C-43E7-9117-F673077FFB3C&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=7B9BA261-7A9C-43E7-9117-F673077FFB3C&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#18564290Answer by John Saunders for Tool for transforming Excel files? (swapping columns, basic string manipulation etc)John Saunders2009-12-06T20:01:33Z2009-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#18547221Answer by John Saunders for WCF proxy generated from WSDL, proxy method returns null.John Saunders2009-12-06T08:11:16Z2009-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#18546072Answer by John Saunders for Windows Forms App, output text?John Saunders2009-12-06T07:01:48Z2009-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#18537561Answer by John Saunders for asp.net TemplateField.ItemTemplateJohn Saunders2009-12-05T22:55:19Z2009-12-05T23:52:23Z<p>You would usually do this sort of thing in the markup:</p>
<pre><code><TemplateField ...>
<ItemTemplate>
<asp:TextBox .../>
</ItemTemplate>
</TemplateField>
</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><%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:AdventureWorksConnectionString %>"
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">
</asp:SqlDataSource>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">
<%-- <ItemTemplate>
<asp:Label runat="server" ID="lblLast">Name:&nbsp;</asp:Label>
<asp:Label runat="server" ID="lblName" Text='<%# DataBinder.Eval(Container.DataItem, "LastName")+", "+DataBinder.Eval(Container.DataItem, "FirstName") %>' />
</ItemTemplate>--%>
<SeparatorTemplate>
<hr />
</SeparatorTemplate>
</asp:Repeater>
</form>
</body>
</html>
</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#18537081Answer by John Saunders for What are effective strategies for documenting a large legacy .Net platform as the main developer just quit?John Saunders2009-12-05T22:40:40Z2009-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#18517501Answer by John Saunders for Web Service in asp.netJohn Saunders2009-12-05T09:58:06Z2009-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#18513890Answer by John Saunders for What is the best way to generate unique session IDs?John Saunders2009-12-05T06:49:35Z2009-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#18511610Answer by John Saunders for System.ComponentModel.DataAnnotationsJohn Saunders2009-12-05T04:54:47Z2009-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#18506921Answer by John Saunders for Gridview DataSourceID with Multiple Datasources?John Saunders2009-12-05T01:09:55Z2009-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-dataComment by John Saunders on Answering "Which method called me?" at the run-time in .NET? Or is CallStack data readable by the code?John Saunders2009-12-09T13:47:45Z2009-12-09T13:47:45ZA better question than "is it possible" is, "is it desirable". 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#1870576Comment by John Saunders on Refactoring a working projectJohn Saunders2009-12-09T03:57:19Z2009-12-09T03:57:19ZWe disagree, that's all. I don't believe refactoring is possible or practical without the ability to pretty near "prove" 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 "refactoring" to mean "trying to improve the quality of the code without being able to determine whether you've broken it".http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870781#1870781Comment by John Saunders on Refactoring a working projectJohn Saunders2009-12-09T03:06:25Z2009-12-09T03:06:25Z@Mike: I know they're used by "agile" people, but "unit tests + refactoring" does not imply "agile". "agile" may imply "unit tests + refactoring", but not the other way around.http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576Comment by John Saunders on Refactoring a working projectJohn Saunders2009-12-09T03:05:19Z2009-12-09T03:05:19ZI 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#1865403Comment 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 Saunders2009-12-09T02:23:45Z2009-12-09T02:23:45Zit 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#1867474Comment 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 Saunders2009-12-09T02:23:09Z2009-12-09T02:23:09Z<code>xmlns</code> is not what they mean by "default attribute". See my answer.http://stackoverflow.com/questions/1369694/slow-web-service-and-wcf-service-calls-from-windows-7/1871209#1871209Comment by John Saunders on Slow web service (and WCF service) calls from Windows 7John Saunders2009-12-09T02:21:17Z2009-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-errorComment by John Saunders on Why am I getting a code signing error?John Saunders2009-12-09T02:20:19Z2009-12-09T02:20:19ZEnglish, please, and please include some code, not just the error messages.http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1870576#1870576Comment by John Saunders on Refactoring a working projectJohn Saunders2009-12-09T02:19:28Z2009-12-09T02:19:28ZThe question uses the term "refactoring", which has a fairly specific meaning. If the OP really means "arbitrarily changing code to improve readability", then he/she should say so.http://stackoverflow.com/questions/1870474/visual-studio-2008-class-designer-associations/1870620#1870620Comment by John Saunders on Visual Studio 2008 Class Designer - associationsJohn Saunders2009-12-09T02:18:24Z2009-12-09T02:18:24ZWell, 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-answerComment by John Saunders on how you can respect the website that help to get your question's answer?John Saunders2009-12-09T01:19:33Z2009-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#1870781Comment by John Saunders on Refactoring a working projectJohn Saunders2009-12-09T01:02:17Z2009-12-09T01:02:17ZNote 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#1870576Comment by John Saunders on Refactoring a working projectJohn Saunders2009-12-09T01:00:12Z2009-12-09T01:00:12Z@Andrew: to me, the term "refactoring" 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 "refactoring". 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 "refactoring" and associate that term with the number of bugs you're introducing.http://stackoverflow.com/questions/1870474/visual-studio-2008-class-designer-associations/1870620#1870620Comment by John Saunders on Visual Studio 2008 Class Designer - associationsJohn Saunders2009-12-09T00:45:40Z2009-12-09T00:45:40ZI 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#1870620Comment by John Saunders on Visual Studio 2008 Class Designer - associationsJohn Saunders2009-12-09T00:41:42Z2009-12-09T00:41:42ZPlease quote from the standard how an association can be used to model the return type of a property, or method.