User Scott Dorman - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T04:19:29Zhttp://stackoverflow.com/feeds/user/1559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1376965/when-to-use-a-sortedlisttkey-tvalue-over-a-sorteddictionarytkey-tvalue2When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>?Scott Dorman2009-09-04T02:35:59Z2009-11-18T06:38:44Z
<p>This may appear to be a duplicate of this <a href="http://stackoverflow.com/questions/935621/whats-the-difference-between-sortedlist-and-sorteddictionary">question</a>, which asks "What’s the difference between <a href="http://msdn.microsoft.com/en-us/library/ms132319.aspx" rel="nofollow">SortedList</a> and <a href="http://msdn.microsoft.com/es-mx/library/f7fta44c.aspx" rel="nofollow">SortedDictionary</a>?" Unfortunately, the answers do nothing more than quote the MSDN documentation (which clearly states that there are performance and memory use differences between the two) but don't actually answer the question.</p>
<p>In fact (and so this question doesn't get the same answers), according to MSDN:</p>
<blockquote>
<p>The <code>SortedList<TKey, TValue></code> generic
class is a binary search tree with
O(log n) retrieval, where n is the
number of elements in the dictionary.
In this, it is similar to the
<code>SortedDictionary<TKey, TValue></code> generic
class. The two classes have similar
object models, and both have O(log n)
retrieval. Where the two classes
differ is in memory use and speed of
insertion and removal:</p>
<ul>
<li><p><code>SortedList<TKey, TValue></code> uses less
memory than <code>SortedDictionary<TKey,
TValue></code>.</p></li>
<li><p><code>SortedDictionary<TKey, TValue></code> has
faster insertion and removal
operations for unsorted data, O(log n)
as opposed to O(n) for
<code>SortedList<TKey, TValue></code>.</p></li>
<li><p>If the list is populated all at once
from sorted data, <code>SortedList<TKey,
TValue></code> is faster than
<code>SortedDictionary<TKey, TValue></code>.</p></li>
</ul>
</blockquote>
<p>So, clearly this would indicated that <code>SortedList<TKey, TValue></code> is the better choice <strong>unless</strong> you need faster insert and remove operations for <strong>unsorted</strong> data.</p>
<p>The question still remains, given the information above what are the practical (real-world, business case, etc.) reasons for using a <code>SortedDictionary<TKey, TValue></code>? Based on the performance information, it would imply that there really is no need to have <code>SortedDictionary<TKey, TValue></code> at all.</p>
http://stackoverflow.com/questions/579460/loading-using-resource-dictionaries-from-a-winforms-hosted-wpf-control2Loading/Using Resource Dictionaries from a WinForms hosted WPF controlScott Dorman2009-02-23T21:33:52Z2009-10-27T06:02:04Z
<p>I have a Windows Forms application that needs to host a WPF control at runtime. I have the basic hosting and interaction complete (using an ElementHost control) and everything works fine until I try to do something that requires the WPF control to make use of some custom resource dictionaries that are defined. (The WPF control and all of it's resource dictionaries are all defined in the same WPF Control Library DLL.)</p>
<p>As soon as that happens, I get a bunch of errors that look like this:</p>
<pre><code>System.Windows.ResourceDictionary Warning: 9 : Resource not found; ResourceKey='DocumentHeaderInterestStyle'
</code></pre>
<p>I have found one <a href="http://www.drwpf.com/blog/Home/tabid/36/EntryID/10/Default.aspx" rel="nofollow">reference</a> that talks about this, but it seems like the article is approaching things more from the WPF side, but I don't really want to have to make changes to the WPF control as everything works in a stand-alone WPF application.</p>
<p>If the only way to accomplish this is to make changes on the WPF side, I can get those changes made (I'm not responsible for the WPF control library but the person that is also works for the same company so it's not a problem other than getting his time to make the changes.) but I'm hoping for something I can do on the WinForms side to get this working.</p>
<p>The WPF control library has a resource dictionary file named "Default.xaml" defined in the project with the following properties:</p>
<p>Build Action: Page
Copy to Output Directory: Do not copy
Custom Tool: MSBuild:Compile</p>
<p>The stand-alone WPF application has the following entry in it's App.xaml file:</p>
<pre><code> <ResourceDictionary x:Uid="ResourceDictionary_1">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary x:Uid="ResourceDictionary_2" Source="/SmartClient.Infrastructure;component/Themes\Default.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</code></pre>
<p>It seems like the control library should already know how to get its resources. Using the Resources.MergedDictionaries.Add() seems like it should work, but where do I get the instance of the existing dictionary?</p>
http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed21How to detect what .NET Framework versions and service packs are installed?Scott Dorman2008-10-13T21:22:21Z2009-10-16T16:52:11Z
<p>A similar question was asked <a href="http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-35-sp1-is-installed">here</a>, but was specific to .NET 3.5. Specifically, I'm looking for the following:</p>
<ol>
<li>What is the correct way to determine which .NET Framework versions and service packs are installed? </li>
<li>Is there a list of registry keys that can be used?</li>
<li>Are there any dependencies between Framework versions?</li>
</ol>
http://stackoverflow.com/questions/1552018/turn-off-intellisense-in-vs-2008-for-a-single-project/1552178#15521783Answer by Scott Dorman for Turn off Intellisense in VS 2008 for a single projectScott Dorman2009-10-12T00:14:51Z2009-10-12T00:14:51Z<p>The problem is almost certainly not related to Intellisense. There are at least a few things you can try:</p>
<ol>
<li>Turn off any add-ins you may have installed, such as R# or CodeRush.</li>
<li>With Visual Studio <strong>not running</strong>
<ol>
<li>Delete the .suo file for your solution and project, if there is one.</li>
<li>Delete both the <code>bin</code> and <code>obj</code> folders.</li>
</ol></li>
</ol>
<p>After those steps, restart Visual Studio, open your project again and see if you get better performance.</p>
http://stackoverflow.com/questions/1548729/c-class-function-members-declaration-implementation/1548749#15487494Answer by Scott Dorman for C# Class function members declaration & implementationScott Dorman2009-10-10T18:47:08Z2009-10-10T18:47:08Z<p>No, there is no concept of implementation and header files in C# like you find in C/C++. The closest you can come to this is to use an interface, but the interface can only define the public members of your class. You would then end up with a 1-to-1 mapping of classes and interfaces, which really isn't the intent for how interfaces are to be used.</p>
http://stackoverflow.com/questions/1547867/dynamic-options-dialog-using-reflection/1547903#15479031Answer by Scott Dorman for Dynamic options dialog (using reflection)Scott Dorman2009-10-10T13:12:59Z2009-10-10T13:55:54Z<p>I'm not aware of any controls that allow you to do this, but it isn't difficult to do yourself. The easiest way is to create the dialog shell, a user control which acts as the base class for the options "panels", one (or more) attribute to control the name and grouping information, and an interface (which the user control implements).</p>
<p>Each of your custom options panels derives from the user control and overrides some sort of <code>Initialize()</code> and <code>Save()</code> method (provided by the user control). It also provides your attribute (or attributes) that determine the name/grouping information.</p>
<p>In the dialog shell, reflectively inspect all public types from your assembly (or all loaded assemblies) looking for types that implement your interface. As you find a type, get the attributes to determine where to place it in your grouping (easiest thing here is to use a tree view), call <code>Activator.CreateInstance</code> to create an instance of the user control and store it in the <code>Tag</code> property. When the user clicks on an entry in the grouping (a tree node), get the <code>Tag</code> and set the panel which contains the user control to the object in the <code>Tag</code> property. Finally, when the user clicks "OK" on the dialog, loop through the tree nodes, get the <code>Tag</code> property and call the <code>Save</code> method.</p>
<p><strong>Update:</strong>
Another option would be to use a property grid control. It doesn't have a "pretty" UI look to it, but it is very functional, already supports grouping by a category attribute, and allows a great deal of flexibility. You could go with a single property grid that shows all of the options, or go with a "hybrid" approach with a tree view that groups by major functions (plugin, capability, etc.), probably based on the type. When the user clicks that node, give the property grid the object instance. The only drawback to this approach is that when changes are made to the property grid values they are "live" in that the underlying property is immediately changed, which means there is no concept of "Cancel" short of saving a copy of each value that could change and performing some type of "reset" yourself.</p>
http://stackoverflow.com/questions/1546905/dynamically-adding-items-to-a-listt-through-reflection/1546922#15469220Answer by Scott Dorman for Dynamically adding items to a List<T> through reflectionScott Dorman2009-10-10T03:13:22Z2009-10-10T03:13:22Z<p>You need to call <code>type.MakeGenericType(type.GetGenericArguments())</code>, which will return the correct closed generic type. You would then need to reflectively call the <code>Add</code> method. The code should look something like this:</p>
<pre><code> Type listType = type.MakeGenericType(type.GetGenericArguments());
MethodInfo addMethod = listType.GetMethod("Add");
addMethod.Invoke(instance, new object[] { ... });
</code></pre>
<p>I'm not sure what you would use as <code>instance</code>, but this is the actual object on which the method will be invoked.</p>
<p>The better question to ask is why are you trying to do this? The .NET Framework already includes serializers that know how to do all of this type of work. If you can, you should be using one of those instead of trying to "roll your own".</p>
http://stackoverflow.com/questions/1546763/what-makes-a-good-options-dialog-box/1546777#15467772Answer by Scott Dorman for What makes a good options dialog box?Scott Dorman2009-10-10T01:30:40Z2009-10-10T01:30:40Z<p>I think this really depends on how many options you will have, what their logical groupings can be, and where they can come from (the application, external plugins, etc.) The tree-style dialog used by Visual Studio is a good choice because of the large number of options and the many plugins/packages which provide options that are manipulated in this dialog.</p>
<p>The common patterns that I've seen are:</p>
<ol>
<li>The Visual Studio type dialog (tree view).</li>
<li>The Word/Office options dialog (particularly in Office 2007/2010).</li>
<li>A standard tabbed dialog (only a good options with a small number (less than 4) of tabs).</li>
<li>A single dialog with options grouped using group boxes (standard .NET style or Office style). This is only viable with a small number of options.</li>
</ol>
http://stackoverflow.com/questions/1533757/is-int-a-reference-type-of-value-type/1533794#15337941Answer by Scott Dorman for Is int[] a reference type of value type?Scott Dorman2009-10-07T19:49:30Z2009-10-07T19:49:30Z<p>The array itself is a reference type. The values of that array are value or reference types as determined by the array data type. In your example, the array is a reference type and the values are value types.</p>
<p>All single-dimension arrays implicitly implement <code>IList<T></code>, where <code><T></code> is the data type of the array. You can use that interface as the data type of your method parameter instead. You could also use <code>IEnumerable<T></code> for the data type. In either case (or even if you just use <code>int[]</code>) you shouldn't need to explicitly pass it as a <code>ref</code> parameter.</p>
http://stackoverflow.com/questions/1533334/datagridviewrow-not-being-garbage-collected/1533661#15336611Answer by Scott Dorman for DataGridViewRow not being Garbage CollectedScott Dorman2009-10-07T19:26:25Z2009-10-07T19:26:25Z<p>The call to <code>GC.SuppressFinalize(this)</code> essentially tells the GC that the cleanup behaviors that occur during finalization have already happened (via the call to <code>Dispose()</code>) and that it doesn't need to perform the finalization again. This has no bearing on whether or not the object is placed on the finalization queue.</p>
<p>Any time a finalizable object is instantiated (<code>new</code>ed), it is placed on the finalization queue. The finalization queue is only processed during every full GC collection (Gen2 collection). One of the problems with finalizable objects is that they will survive <em>at least</em> one extra GC cycle before they are actually collected.</p>
http://stackoverflow.com/questions/1520607/c-net-framework-versioning/1520813#15208130Answer by Scott Dorman for C# .Net framework versioningScott Dorman2009-10-05T15:34:11Z2009-10-05T15:34:11Z<p>First of all, you need to be aware that what you are targeting is actually <strong>.NET 2.0 SP1</strong>.</p>
<p>How are your projects related? Do you have projects that are built under .NET 2.0 which reference the .NET 3.5 project (or vice versa)?</p>
http://stackoverflow.com/questions/1515438/which-managed-classes-in-net-framework-allocate-or-use-unmanaged-memory/1515465#15154651Answer by Scott Dorman for Which managed classes in .NET Framework allocate (or use) unmanaged memory?Scott Dorman2009-10-04T02:43:30Z2009-10-04T02:43:30Z<p>As far as I know, there is no single document that describes or identifies which classes in the framework use unmanaged resources. The MSDN documentation for the specific class may, but that would require you to look at specific classes.</p>
<p>Overall, it's a safe bet that many of the classes make use of some unmanaged code at some point. For instance, many of the Windows Forms controls are simply wrappers around the Win32 controls so they make use of unmanaged resources.</p>
http://stackoverflow.com/questions/1501001/what-features-are-people-looking-forward-to-in-visual-studio-2010/1501059#15010591Answer by Scott Dorman for What features are people looking forward to in Visual Studio 2010?Scott Dorman2009-09-30T22:46:29Z2009-09-30T22:46:29Z<p>First, don't trust rumors as they are usually false/incorrect. Beta 1 has only been out a short time and there was still a lot that didn't work at all, didn't work correctly, or didn't meet the performance requirements.</p>
<p>That being said, the features that I think will be the big "winners" are:</p>
<ul>
<li>Parallel Computing Platform</li>
<li>Inclusion of the DLR</li>
<li>Historical debugging</li>
<li>Improved extensibility model (which will allow third-party plugins to be written much more easily and allow a level of personal customizations that we haven't had before)</li>
</ul>
http://stackoverflow.com/questions/1471750/how-well-does-rule-engines-performs/1496073#14960732Answer by Scott Dorman for How well does Rule Engines performs?Scott Dorman2009-09-30T04:07:18Z2009-09-30T04:07:18Z<p>One thing to be very aware of is that the WF rules engine is that it actually implements its own parser and, as a result, is somewhat limited in its expressiveness and does have performance considerations since it is pretty much doing string parsing to interpret the rules into code (executable actions) at runtime.</p>
http://stackoverflow.com/questions/1471140/how-does-the-visual-studio-populate-the-references-tab/1496044#14960440Answer by Scott Dorman for How does the Visual studio populate the references tab?Scott Dorman2009-09-30T03:54:45Z2009-09-30T03:54:45Z<p>Which references "tab" are you referring to? The Add Reference dialog has a tab for .NET , COM, and Projects (plus the Browse and Recent tabs, which you probably aren't interested in.</p>
<p>The most obvious one is Projects, which simply shows you the projects in your solution that aren't already added as a reference to the current project.</p>
<p>For COM, it looks at all of the COM components which have registered TypeLibs from <code>HKEY_CLASSES_ROOT\TypeLib</code>.</p>
<p>The .NET tab uses the <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders</code> registry key for the list of folder paths. It also looks at <code>%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies</code> or <code>%ProgramFiles%\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies</code> (again, depending on the version). If you have VS2008 installed, you can also add additional paths per project in the "Reference Paths" tab of the project properties.</p>
http://stackoverflow.com/questions/1468847/gc-collect-on-only-generation-2-large-object-heap/1468951#14689511Answer by Scott Dorman for GC.Collect on only generation 2 & large object heapScott Dorman2009-09-23T22:58:04Z2009-09-23T22:58:04Z<p>Since all new allocations (other than for large objects) <strong>always</strong> go in Gen0, the GC is designed to always collect from the specified generation and below. When you call <code>GC.Collect(2)</code>, you are telling the GC to collect from Gen0, Gen1, and Gen2.</p>
<p>If you are certain you are dealing with a lot of large objects (objects that at allocation time are large enough to be placed on the LOH) the best option is to ensure that you set them to null (Nothing in VB) when you are done with them. LOH allocation attempts to be smart and reuse blocks. For example, if you allocated a 1MB object on the LOH and then disposed of it and set it to null, you would be left with a 1MB "hole". The next time you allocate anything on the LOH that is 1MB <em>or smaller</em> in size, it will fill in that hole (and keep filling it in until the next allocation is too large to fit in the remaining space, at which point it will allocate a new block.)</p>
<p>Keep in mind that generations in .NET are not physical things, but are logical separations to help increase GC performance. Since all new allocations go in Gen0, that is always the first generation to be collected. Each collection cycle that runs, anything in a lower generation that survives collection is "promoted" to the next highest generation (until in reaches Gen2). </p>
<p>In most cases, the GC doesn't need to go beyond collecting Gen0. The current implementation of the GC is able to collect Gen0 and Gen1 at the same time, but it can't collect Gen2 while Gen0 or Gen1 are being collected. (.NET 4.0 relaxes this constraint a great deal and for the most part, the GC is able to collect Gen2 while Gen0 or Gen1 are also being collected.)</p>
http://stackoverflow.com/questions/1451216/how-to-recruit-great-developers/1451250#14512501Answer by Scott Dorman for How to Recruit Great Developers?Scott Dorman2009-09-20T15:17:32Z2009-09-20T15:17:32Z<p>First, the qustion title implies more than just the interviewing process. The interview is usually only one part of the entire process. Remember, just as you are interviewing the candiate, they are (or at least should be) interviewing you as well. It has to be about "fit with the group" as well as skill set. I've worked with some incredibly brilliant developers before that had the personality of a stump (or worse, the personality of an jackal having a bad day) and it ultimately always hurts the group as a whole.</p>
<p>That being said, things I usually look for in an interview are how the candidate solves a problem. This can be done in many ways - whiteboard problems, discussion, etc., but it boils down to trying to figure out how they reason about a problem and make decisions. This doesn't mean you should ask the "impoosible" questions (those in which there is no right (or real) answer), although sometimes those can be helpful.</p>
<p>Asking about any past projects that were failures and what was learned from them and/or asking about one area of improvement in themselves is also good. If the answer you get is "no projects failed", "we didn't learn anything", or "there isn't anything I need to improve" (or any similar answers), you've learned that you probably don't want to hire that person.</p>
<p>Always have more than one person interview (if possible), although this doesn't have to be all at the same time. The idea is that the more people involved, the more opinions you get and the more opportunity for someone to spot something that others missed. If any one is unsure of whether or not that person is a good fit for the company/position, then it should be a no.</p>
http://stackoverflow.com/questions/1448452/using-bool-return-type-to-handle-exceptions-or-pass-exception-to-client/1448588#14485881Answer by Scott Dorman for Using bool (return Type) to handle exceptions or pass exception to client?Scott Dorman2009-09-19T13:50:40Z2009-09-19T13:50:40Z<p>The approach that is recommended and considered a best practice is to use exceptions. You can (and should) read the <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow">Framework Design Guidelines (2nd Ed.)</a>, which has guidelines for exceptions and the try-parse pattern.</p>
<p>There are a few problems with using return codes (either numeric or boolean), the two biggest being:</p>
<ul>
<li>Easily overlooked/ignored by programmers.</li>
<li>Can't be used in all situations. What happens if your constructor fails? It's not possible for you to return a value explicitly from a constructor.</li>
</ul>
<p>As for when to handle exceptions, you should only handle them when you can do something meaningful about the exception. The problem with always handling exceptions so the client never sees them is that you can end up handling an exception that you shouldn't have and cause more problems later (like actually loosing data).</p>
http://stackoverflow.com/questions/1430831/anyone-found-a-use-of-var-other-than-for-linq/1430844#143084413Answer by Scott Dorman for Anyone found a use of "var" other than for LINQ?Scott Dorman2009-09-16T03:48:20Z2009-09-16T03:48:20Z<p>I use it in <code>foreach</code> loops very often:</p>
<pre><code>foreach(var item in collection)
</code></pre>
http://stackoverflow.com/questions/844667/listviewgroups-not-working-correctly/1427935#14279350Answer by Scott Dorman for ListViewGroups not working correctlyScott Dorman2009-09-15T15:37:47Z2009-09-15T15:37:47Z<p>Yes, I have seen similar behavior. The solution I followed is based on the code <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.groups.aspx" rel="nofollow">here</a>.</p>
<pre><code>public partial class ListViewExtended : ListView
{
private Collection<Dictionary<string, ListViewGroup>> groupTables = new Collection<Dictionary<string,ListViewGroup>>();
public ListViewExtended()
{
InitializeComponent();
}
/// <summary>
/// Create groups for each column of the list view.
/// </summary>
public void CreateGroups()
{
CreateGroups(false);
}
/// <summary>
/// Create groups for each column of the list view.
/// </summary>
public void CreateGroups(bool reset)
{
if (OSFeature.Feature.IsPresent(OSFeature.Themes))
{
if (reset)
{
this.groupTables.Clear();
}
for (int column = 0; column < this.Columns.Count; column++)
{
Dictionary<string, ListViewGroup> groups = new Dictionary<string, ListViewGroup>();
foreach (ListViewItem item in this.Items)
{
string subItemText = item.SubItems[column].Text;
// Use the initial letter instead if it is the first column.
if (column == 0)
{
subItemText = subItemText.Substring(0, 1).ToUpperInvariant();
}
if (!groups.ContainsKey(subItemText))
{
groups.Add(subItemText, new ListViewGroup(subItemText) { Name = subItemText });
}
}
this.groupTables.Add(groups);
}
}
}
/// <summary>
/// Sets the list view to the groups created for the specified column.
/// </summary>
/// <param name="column"></param>
public void SetGroups(int column)
{
if (OSFeature.Feature.IsPresent(OSFeature.Themes))
{
try
{
this.BeginUpdate();
this.Groups.Clear();
if (column == -1)
{
this.ShowGroups = false;
}
else
{
this.ShowGroups = true;
Dictionary<string, ListViewGroup> groups = groupTables[column];
this.Groups.AddRange(groups.Values.OrderBy(g => g.Name).ToArray());
foreach (ListViewItem item in this.Items)
{
string subItemText = item.SubItems[column].Text;
// For the Title column, use only the first letter.
if (column == 0)
{
subItemText = subItemText.Substring(0, 1).ToUpperInvariant();
}
item.Group = groups[subItemText];
}
groups.Values.ForEach<ListViewGroup>(g => g.Header = String.Format(CultureInfo.CurrentUICulture, "{0} ({1})", g.Name, g.Items.Count));
}
}
finally
{
this.EndUpdate();
}
}
}
}
</code></pre>
<p>In the code that actually adds the items to the listview, you want to do something like this:</p>
<pre><code>this.itemsListView.Items.AddRange(items.ToArray());
this.itemsListView.CreateGroups(true);
this.itemsListView.SetGroups(0); // Group by the first column by default.
</code></pre>
http://stackoverflow.com/questions/1422264/why-is-vs-as-when-casting/1422279#14222791Answer by Scott Dorman for Why 'is' vs 'as' when casting?Scott Dorman2009-09-14T15:29:54Z2009-09-14T15:29:54Z<p>Essentially, when using <code>is</code> it performs the cast and returns a boolean indicating success or failure. You then would need to cast again to actually get the object as the other type. Using <code>as</code> performs the cast and if successful returns you the casted object, otherwise it returns null. Using the <code>as</code> operator requires one less cast operation. They also result in different IL instructions.</p>
http://stackoverflow.com/questions/1419360/c-code-formatting/1419370#14193700Answer by Scott Dorman for C++ code formatting..Scott Dorman2009-09-14T01:48:48Z2009-09-14T01:48:48Z<p>It's probably there, but mapped to a different keyboard shortcut. For example, on my VS2008 install Ctrl+<strong>K</strong>,D doesn't map to anything but Ctrl+<strong>E</strong>,D maps to the Edit|Advanced|Format Document command.</p>
http://stackoverflow.com/questions/1419219/is-there-really-any-difference-between-nunit-mstest-etc/1419334#14193341Answer by Scott Dorman for Is there really any difference between NUnit, MSTest, etc.? Scott Dorman2009-09-14T01:33:06Z2009-09-14T01:33:06Z<p>Detecting what code changed since the last build and running only the affected unit tests isn't really the responsibility of the unit testing framework but rather the responsibility of the build software/scripts.</p>
<p>As far as a unit testing framework goes, they are all fairly comparable to each other, although MSTest is the youngest (I believe). As far as I know, none of them have any implicit (built-in) integration to databases at all, although they all support some notion of setup and teardown for test classes and methods.</p>
<p>Any of them will provide the ability to call web services, etc. but as far as scripting things like TCP ports that is best left to isolation or mocking frameworks, not unit testing frameworks.</p>
http://stackoverflow.com/questions/1419278/control-flow-via-return-vs-if-else/1419311#14193110Answer by Scott Dorman for Control Flow via Return vs. If/ElseScott Dorman2009-09-14T01:23:22Z2009-09-14T01:23:22Z<p>They are both valid options, and one isn't necessarily any better than the other. Which one you choose is, ultimately, personal preference. Yes, Option A results in <em>slightly</em> less code, but overall they are pretty much equal.</p>
<p>In both cases you are controlling flow via an if and a return. It's really a question of how you prefer to see your boolean logic - negative or positive?</p>
<p>Is <code>ActionResult</code> an enum or a base class? If it's an enum, why are you returning <code>null</code> when <code>Edit</code> returns what appears to be an enum? Wouldn't it be cleaner simply to return an <code>ActionResult</code> value that indicates no action was taken because the object wasn't in an editable state?</p>
http://stackoverflow.com/questions/1418512/which-error-handling-model-is-more-robust/1418580#14185802Answer by Scott Dorman for Which Error Handling Model Is More Robust?Scott Dorman2009-09-13T19:01:00Z2009-09-13T19:01:00Z<p>They are both accepted forms of error handling, however the preferred choice for .NET languages is to use exceptions.</p>
<p>There are a few problems with using return codes (either numeric or boolean), the two biggest being:</p>
<ul>
<li>Easily overlooked/ignored by programmers.</li>
<li>Can't be used in all situations. What happens if your constructor fails? It's not possible for you to return a value explicitly from a constructor.</li>
</ul>
<p>For these reasons alone, you should use exceptions. Exceptions provide a clean, standardized way to indicate and any failure no matter where it arises.</p>
<p>You will also end up with less code overall as you should only catch exceptions when and where you can safely and appropriately handle that exception.</p>
http://stackoverflow.com/questions/1417876/vb-net-memory-management/1417945#14179453Answer by Scott Dorman for VB.NET Memory ManagementScott Dorman2009-09-13T15:03:51Z2009-09-13T15:03:51Z<p>First, you need to realize that Task Manager is showing you the amount of memory the operating system has allocated to your application. This is not necessarily the amount of memory actually being used. When a .NET application first starts, the operating system allocates memory for it, just as it does for any process. The .NET runtime then further divides that memory and manages how it is used. The runtime can be thought of as "greedy" in that once allocated memory by the operating system it won't give it back unless specifically asked to by the operating system. The result is that the memory usage in Task Manager is not accurate.</p>
<p>To get a true picture of your memory usage, you need to use Performance Monitor and add the appropriate counters.</p>
<p>As far as <code>IDisposable</code> and the dispose pattern, you probably won't find much that talks about this in language specific terms since it is something provided by the .NET Framework itself and is language agnostic. The pattern is the same no matter what language you use, only the syntax is different.</p>
<p>There are several references available that will give you information on how memory management works. I have two blog posts, one which talks about <a href="http://geekswithblogs.net/sdorman/archive/2007/07/21/Using-Garbage-Collection-in-.NET.aspx" rel="nofollow">Using Garbage Collection in .NET</a> and one which lists the various <a href="http://geekswithblogs.net/sdorman/archive/2008/09/14/.net-memory-management-ndash-resources.aspx" rel="nofollow">resources</a> I used to create two presentations on memory management in .NET.</p>
<p>The best "rule of thumb" is that if a class implements <code>IDisposable</code>, it does so for a reason and you should ensure that you are calling <code>Dispose()</code> when you are done using the instance. This is most easily accomplished with the <a href="http://msdn.microsoft.com/en-us/library/yh598w02.aspx" rel="nofollow"><code>using</code></a> statement.</p>
http://stackoverflow.com/questions/1413658/c-basics-making-properties-atomic/1413671#14136713Answer by Scott Dorman for C# Basics Making Properties AtomicScott Dorman2009-09-11T23:09:00Z2009-09-11T23:09:00Z<p>The simplest way would be to accept the base and height values only on the constructor and then expose all of them as read-only properties:</p>
<pre><code>class Triangle
{
private double base;
private double height;
private Triangle() { }
public Triangle(double base, double height)
{
this.base = base;
this.height = height;
}
public double Base
{
get
{
return this.base;
}
}
public double Height
{
get
{
return this.height;
}
}
public double Area
{
get
{
return (this.base * this.height) / 2;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1411470/adding-constraints-to-an-interface-property/1411502#14115027Answer by Scott Dorman for Adding constraints to an interface propertyScott Dorman2009-09-11T15:09:06Z2009-09-11T17:56:55Z<p>You have to mark the interface as generic as well:</p>
<pre><code>interface IHouse<T> where T : IRoom
{
IEnumerable<T> Bedrooms { get; }
}
</code></pre>
http://stackoverflow.com/questions/1397196/is-this-a-legitimate-alternative-to-the-traditional-dispose-pattern-for-class-h/1397243#13972433Answer by Scott Dorman for Is this a legitimate alternative to the "traditional" dispose pattern for class hierarchies?Scott Dorman2009-09-09T02:11:36Z2009-09-09T02:11:36Z<p>The first issue you will potentially hit is that C# only allows you to inherit from a single base class, which in this case will <strong>always</strong> be <code>DisposableObject</code>. Right here you have cluttered your class hierarchy by forcing additional layers so that classes that need to inherit from <code>DisposableObject</code> and some other object can do so.</p>
<p>You are also introducing a lot of overhead and maintenance issues down the road with this implementation (not to mention the repeated training costs everytime someone new comes on to the project and you have to explain how they should use this implementation rather than the defined pattern). You know have multiple states to keep track of with your two lists, there is no error handling around the calls to the actions, the syntax when calling an action looks "wierd" (while it may be common to invoke a method from an array, the syntax of simply putting the () after the array access just looks strange).</p>
<p>I understand the desire to reduce the amount of boilerplate you have to write, but disposability is generally not one of those areas that I would recommend taking short-cuts or otherwise deviating from the pattern. The closest I usually get is to use a helper method (or an extension method) that wraps the actual call to <code>Dispose()</code> on a given object. These calls typically look like:</p>
<pre><code>if (someObject != null)
{
someObject.Dispose();
}
</code></pre>
<p>This can be simplified using a helper method, but keep in mind that FxCop (or any other static analysis tool that checks for correct dispose implementations) will complain.</p>
<p>As far as performance is concerned, keep in mind that you are making a lot of delegate calls with this type of implementation. This is, by nature of a delegate, somewhat more costly than a normal method call.</p>
<p>Maintainability is definately an issue here. As I mentioned, you have the repeated training costs everytime someone new comes on to the project and you have to explain how they should use this implementation rather than the defined pattern. Not only that, you have problems with everyone remembering to add their disposable objects to your lists.</p>
<p>Overall, I think doing this is a bad idea that will cause a lot of problems down the road, especially as the project and team size increase.</p>
http://stackoverflow.com/questions/1395205/better-way-to-check-if-path-is-a-file-or-a-directory-c-net/1395251#13952510Answer by Scott Dorman for Better way to check if Path is a File or a Directory ? (C#, .NET)Scott Dorman2009-09-08T17:32:12Z2009-09-08T17:32:12Z<p>The most accurate approach is going to be using some interop code from the shlwapi.dll</p>
<pre><code> [DllImport(SHLWAPI, CharSet = CharSet.Unicode)]
[return: MarshalAsAttribute(UnmanagedType.Bool)]
[ResourceExposure(ResourceScope.None)]
internal static extern bool PathIsDirectory([MarshalAsAttribute(UnmanagedType.LPWStr), In] string pszPath);
</code></pre>
<p>You would then call it like this:</p>
<pre><code> #region IsDirectory
/// <summary>
/// Verifies that a path is a valid directory.
/// </summary>
/// <param name="path">The path to verify.</param>
/// <returns><see langword="true"/> if the path is a valid directory;
/// otherwise, <see langword="false"/>.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <para><paramref name="path"/> is <see langword="null"/>.</para>
/// </exception>
/// <exception cref="T:System.ArgumentException">
/// <para><paramref name="path"/> is <see cref="F:System.String.Empty">String.Empty</see>.</para>
/// </exception>
public static bool IsDirectory(string path)
{
return PathIsDirectory(path);
}
</code></pre>
http://stackoverflow.com/questions/579460/loading-using-resource-dictionaries-from-a-winforms-hosted-wpf-control/1628990#1628990Comment by Scott Dorman on Loading/Using Resource Dictionaries from a WinForms hosted WPF controlScott Dorman2009-10-27T23:12:26Z2009-10-27T23:12:26ZYou would be better asking this as a question rather than as a response to another question.http://stackoverflow.com/questions/1568348/why-do-i-need-to-use-break/1568376#1568376Comment by Scott Dorman on Why do I need to use break?Scott Dorman2009-10-14T19:31:35Z2009-10-14T19:31:35ZIt also allows the JIT flexibility to rearrange the code for optimizations without worrying about breaking something due to fall-through.http://stackoverflow.com/questions/1557863/defaultparametervalue-in-c/1557879#1557879Comment by Scott Dorman on DefaultParameterValue in C#Scott Dorman2009-10-13T01:57:07Z2009-10-13T01:57:07ZIt's possible in C# 4.0, but not using the same syntax.http://stackoverflow.com/questions/1552018/turn-off-intellisense-in-vs-2008-for-a-single-project/1552178#1552178Comment by Scott Dorman on Turn off Intellisense in VS 2008 for a single projectScott Dorman2009-10-12T00:25:59Z2009-10-12T00:25:59Z@Cyclone: The .suo file holds your local "settings", such as what files were open when Visual Studio closed, the startup project, etc. I'm not certain of why it is hidden, but most likely because it is a binary file, so there isn't much you can actually see in it and nothing you could edit. Easily 95% of the "wierd" or "strange" problems I've seen/heard/experienced in Visual Studio are related to the .suo file and deleting it solves the problem.http://stackoverflow.com/questions/1272096/resharper-throws-outofmemoryexception-on-big-solution/1272147#1272147Comment by Scott Dorman on Resharper throws OutOfMemoryException on big solutionScott Dorman2009-10-12T00:17:38Z2009-10-12T00:17:38Z@Ilya Ryzhenkov: Don't judge anything based on Beta 1 as there will be some major changes between Beta 1 and RTM.http://stackoverflow.com/questions/1547812/what-are-the-differences-between-classic-c-and-visual-c/1547846#1547846Comment by Scott Dorman on What are the differences between Classic C++ and Visual C++?Scott Dorman2009-10-11T12:55:47Z2009-10-11T12:55:47Z@Proton: You are referring to unmanaged C++ (which could be Visual C++, Borland C++, etc.). Yes, all of the .NET languages compile to IL. The difference is that Visual Studio as a development environment allows you to work with any of the .NET languages (including C++/CLI) and also C++ (which MS calls Visual C++). For performance concerns, see the update to my answer.http://stackoverflow.com/questions/1548729/c-class-function-members-declaration-implementation/1548734#1548734Comment by Scott Dorman on C# Class function members declaration & implementationScott Dorman2009-10-10T18:50:17Z2009-10-10T18:50:17ZInterfaces really aren't the correct approach here as they can only contain the <b>public</b> members of the class. There is no way to achieve the same result as a header file in C#.http://stackoverflow.com/questions/1548729/c-class-function-members-declaration-implementation/1548748#1548748Comment by Scott Dorman on C# Class function members declaration & implementationScott Dorman2009-10-10T18:48:22Z2009-10-10T18:48:22ZThe interface will only contain the <b>public</b> methods of the class.http://stackoverflow.com/questions/1548729/c-class-function-members-declaration-implementation/1548735#1548735Comment by Scott Dorman on C# Class function members declaration & implementationScott Dorman2009-10-10T18:45:26Z2009-10-10T18:45:26ZYou can define all of your <b>public</b> member functions in an interface. You can not, however, define any accessibility.http://stackoverflow.com/questions/1548320/can-c-extension-methods-access-private-variables/1548333#1548333Comment by Scott Dorman on Can C# extension methods access private variables?Scott Dorman2009-10-10T17:25:37Z2009-10-10T17:25:37ZEven though this is tagged as C#, this applies to any of the .NET languages which provide support for extension methods.http://stackoverflow.com/questions/1547812/what-are-the-differences-between-classic-c-and-visual-c/1547846#1547846Comment by Scott Dorman on What are the differences between Classic C++ and Visual C++?Scott Dorman2009-10-10T17:22:55Z2009-10-10T17:22:55Z@Sinan Ünür: It's whatever you want it to be, I suppose. It wasn't my term to begin with, I used it because that is what the original poster called it. As far as I'm concerned there is C++ (unmanaged) and C++/CLI (managed).http://stackoverflow.com/questions/1547921/which-is-a-better-practice-at-exception-handling/1547937#1547937Comment by Scott Dorman on which is a better practice at exception handling?Scott Dorman2009-10-10T13:47:04Z2009-10-10T13:47:04Z@Steve: Yes, if you don't throw an exception there is only a negligible perf hit to enter/exit the try block. The issue is that if it is an expected condition that a key might not exist there are much better/simpler mechanisms that should be used (ContainsKey or TryGetValue).http://stackoverflow.com/questions/1547919/add-last-modified-date-in-visual-studio/1547931#1547931Comment by Scott Dorman on Add last modified date in Visual StudioScott Dorman2009-10-10T13:41:15Z2009-10-10T13:41:15ZUnfortunately, if you're using TFS as your source control it doesn't support keyword expansion like this. There is an opensource check-in policy that allows it, but I've never used it. <a href="http://logsubstpol.codeplex.com/" rel="nofollow">logsubstpol.codeplex.com</a>.http://stackoverflow.com/questions/1547867/dynamic-options-dialog-using-reflection/1547903#1547903Comment by Scott Dorman on Dynamic options dialog (using reflection)Scott Dorman2009-10-10T13:30:25Z2009-10-10T13:30:25Z@Groo: You could also do that. Pass an instance of your class to the panel's <code>Initialize</code> method, which would then reflectively inspect properties and populate itself. The biggest problem will be getting the layout of the controls, labels, etc. correct. It's <b>much</b> easier to write the panel yourself.http://stackoverflow.com/questions/1546905/dynamically-adding-items-to-a-listt-through-reflection/1546922#1546922Comment by Scott Dorman on Dynamically adding items to a List<T> through reflectionScott Dorman2009-10-10T04:14:02Z2009-10-10T04:14:02Z@John Sheehan: Why is the resulting serialized data intersting/important to you? There are other serializers available than just XmlSerializer, such as the WCF data contract serializer. It can easily be used and supports <code>List<T></code>. Yes, it can generate some ugly looking XML, but in general that shouldn't matter.