User Jeffrey Knight - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T06:18:44Zhttp://stackoverflow.com/feeds/user/83418http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1544736/file-readallbytes-code-refactoring3File.ReadAllBytes Code RefactoringJeffrey Knight2009-10-09T16:13:31Z2009-10-09T16:16:15Z
<p>I came across this piece of code today:</p>
<pre><code>public static byte[] ReadContentFromFile(String filePath)
{
FileInfo fi = new FileInfo(filePath);
long numBytes = fi.Length;
byte[] buffer = null;
if (numBytes > 0)
{
try
{
FileStream fs = new FileStream(filePath, FileMode.Open);
BinaryReader br = new BinaryReader(fs);
buffer = br.ReadBytes((int)numBytes);
br.Close();
fs.Close();
}
catch (Exception e)
{
System.Console.WriteLine(e.StackTrace);
}
}
return buffer;
}
</code></pre>
<p>My first thought is to refactor it down to this:</p>
<pre><code>public static byte[] ReadContentFromFile(String filePath)
{
return File.ReadAllBytes(filePath);
}
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/system.io.file.readallbytes.aspx" rel="nofollow">System.IO.File.ReadAllBytes</a> is documented as:</p>
<blockquote>
<p>Opens a binary file, reads the
contents of the file into a byte
array, and then closes the file.</p>
</blockquote>
<p>... but am I missing some key difference? </p>
http://stackoverflow.com/questions/1541712/remove-xa-from-string-in-net/1541723#15417230Answer by Jeffrey Knight for Remove 
 from String in .netJeffrey Knight2009-10-09T03:59:56Z2009-10-09T03:59:56Z<p>Escape the ampersand in your regex</p>
<pre><code>string s = "hello &#xA there";
Console.WriteLine(Regex.Replace(s, @"\&#xA", ""));
//or more simply:
Console.WriteLine(s.Replace("&#xA", ""));
</code></pre>
http://stackoverflow.com/questions/844653/wfp-mvvm-good-reasons-not-to-place-vms-in-separate-assembly1WFP MVVM: Good reasons *not* to place VM's in separate assembly?Jeffrey Knight2009-05-10T03:53:09Z2009-10-02T16:46:58Z
<p>I'm developing a project using the MVVM pattern in WPF.</p>
<p>One of the key benefits to MVVM is maintaining clear separation between business logic and presentation. </p>
<p>As a test to see how well separated everything actually was, over the weekend I spiked moving all ViewModels, Models, and business logic to a separate .dll. The .exe was left as a thin presentation layer.</p>
<p>This worked, seamlessly, <i>first try</i>. </p>
<p>I've already seen benefits to keeping views (xaml, presentation) in the .exe and core logic in its own dll. For example, there's no longer <a href="http://www.google.com/search?q=wpf+mvvm+no+code+behind" rel="nofollow">any</a> <a href="http://stackoverflow.com/search?q=wpf+mvvm+code+behind">dilemma</a> in my mind about whether code-behind in Xaml is an issue: I'm comfortable with it if it becomes necessary, since I know it's presentation specific.</p>
<p>So far this exe/dll separation has worked so well that my question is: Has anyone experienced any <b>downside</b> to this approach? </p>
<p>Related question: <a href="http://stackoverflow.com/questions/503329/implementing-mvvm-in-wpf-without-using-system-windows-input-icommand">Implementing MVVM in WPF without using System.Windows.Input.ICommand</a></p>
http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name2Find a jar file given the class name?Jeffrey Knight2009-09-30T19:21:15Z2009-09-30T20:40:41Z
<p>This must be a very basic question for Java developers, but what is the best way to find the appropriate <b>jar file</b> given a <b>class name</b>?</p>
<p>For example, given "<a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.wbifz.doc/info/wbifz/javadoc/ae/com/ibm/websphere/security/auth/WSSubject.html" rel="nofollow">com.ibm.websphere.security.auth.WSSubject</a>", how do you track down the appropriate jar file? ("google" is not the answer I'm looking for!)</p>
<p>The <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.wbifz.doc/info/wbifz/javadoc/ae/com/ibm/websphere/security/auth/WSSubject.html" rel="nofollow">java docs</a> do not give any hint of the jar file, and obviously the names of the jar files themselves offer no clue.</p>
<p>There must be a 'search local jars', or some sort of 'auto-resolve dependencies', trick in the java world. Ideally, I'm looking for the 'official' way to do this. I happen to be on a windows machine without cygwin.</p>
http://stackoverflow.com/questions/1209763/doctypes-role-in-general-xml/1209793#1209793-2Answer by Jeffrey Knight for DOCTYPE's role in general XMLJeffrey Knight2009-07-30T22:39:37Z2009-07-30T22:39:37Z<p>This isn't an answer, but it reminds me of Joel's article <a href="http://www.joelonsoftware.com/items/2008/03/17.html" rel="nofollow">Martian Headsets</a> :</p>
<blockquote>
<p>DOCTYPE is a myth.</p>
<p>A mortal web designer who attaches a
DOCTYPE tag to their web page saying,
“this is standard HTML,” is committing
an act of hubris. There is no way they
know that. All they are really saying
is that the page was meant to be
standard HTML. All they really know is
that they tested it with IE, Firefox,
maybe Opera and Safari, and it seems
to work. Or, they copied the DOCTYPE
tag out of a book and don’t know what
it means.</p>
</blockquote>
http://stackoverflow.com/questions/1113518/how-to-disable-keyboard-and-mouse-events-in-a-part-of-the-visual-tree-without-usi/1209736#12097360Answer by Jeffrey Knight for How to disable keyboard and mouse events in a part of the visual tree without using IsEnabled?Jeffrey Knight2009-07-30T22:23:04Z2009-07-30T22:23:04Z<p>I've been struggling with the same issue (also MVVM). I'm also using a UserControl overlay instead of a modal popup.
(In my case, I dislike IsEnabled=false not because of the disabled style, but because toggling IsEnabled makes it hard to get keyboard focus back.)</p>
<p>I'm using the overlay solution (above) for blocking mouse action. And for the "other half of the solution" - -disabling keyboard input -- I'm handing this in the main window:</p>
<pre>
Window
+----------------+ private void Window_PreviewKeyDown(object sender,
| | KeyEventArgs e){
| Transparent | if (this.myDialog.Visibility == Visibility.Visible){
| | e.Handled = true;
| +----------+ | }
| | myDialog | | }
| | content | |
| +----------+ |
| |
+----------------+
</pre>
http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies/941318#9413180Answer by Jeffrey Knight for StructureMap and scanning assembliesJeffrey Knight2009-06-02T19:02:58Z2009-06-02T19:02:58Z<p><a href="http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#816376">http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#816376</a></p>
http://stackoverflow.com/questions/921601/how-can-i-handle-a-validation-error-in-my-viewmodel-instead-of-my-views-code-beh/927811#9278110Answer by Jeffrey Knight for How can I handle a Validation.Error in my ViewModel instead of my View's code behind?Jeffrey Knight2009-05-29T19:49:06Z2009-05-29T19:49:06Z<p>I gave up on the built-in error validation and opted for a just exposing an error property in my ViewModel. </p>
<p><a href="http://www.rootsilver.com/2009/05/wpf-mvvm-simple-error-validation" rel="nofollow">Here's</a> an example of simple error validation in WPF MVVM, similar to <a href="#922818" rel="nofollow">Matt Brunell's answer</a>. You can download a simple project using this technique at <a href="http://www.rootsilver.com/2009/05/wpf-mvvm-simple-error-validation" rel="nofollow">the link above</a></p>
http://stackoverflow.com/questions/925912/storing-real-time-data-into-1000-files/926674#9266741Answer by Jeffrey Knight for Storing Real Time data into 1000 filesJeffrey Knight2009-05-29T15:42:05Z2009-05-29T15:42:05Z<p>Perhaps you don't want the overhead of a DB install? </p>
<p>In that case, you could try <a href="http://www.sqlite.org/" rel="nofollow">a filesystem-based database like sqlite</a>:</p>
<blockquote>
<p>SQLite is a software library that
implements a self-contained,
serverless, zero-configuration,
transactional SQL database engine.
SQLite is the most widely deployed SQL
database engine in the world. The
source code for SQLite is in the
public domain.</p>
</blockquote>
http://stackoverflow.com/questions/920172/how-do-i-pass-the-information-from-view-to-viewmodel-with-delegatecommand/922337#9223370Answer by Jeffrey Knight for How do I pass the information from View to ViewModel with DelegateCommand?Jeffrey Knight2009-05-28T17:59:25Z2009-05-28T18:05:40Z<p>You're asking about passing data via the button Command. </p>
<p>What you actually want, I think, is to <strong>bind</strong> your Textbox's text to a <strong>public property</strong> in your ViewModel:</p>
<pre><code><!-- View: TextBox's text is bound to the FirstName property in your ViewModel -->
<TextBox Text="{Binding Path=FirstName}" />
<Button Command="{Binding SaveCommand}"/>
<!-- ViewModel: Expose a property for the TextBox to bind to -->
public string FirstName{ get; set; }
...
private void Save()
{
//textBox's text is bound to --> this.FirstName;
}
</code></pre>
http://stackoverflow.com/questions/922207/how-can-i-make-a-program-thats-impossible-to-be-killed-in-windows/922225#9222252Answer by Jeffrey Knight for How can I make a program that's impossible to be killed in Windows?Jeffrey Knight2009-05-28T17:39:44Z2009-05-28T18:01:56Z<p>Control it with a Windows Service. Easy to do in C#. Lock down permissions to stop the service.</p>
<p>Note: I think the answers of "this is impossible/horrible/evil" are perhaps missing your point. A service is specifically designed 'keep going', which is what you're asking about.</p>
http://stackoverflow.com/questions/905392/how-to-bind-a-view-with-multiple-observablecollection/905470#9054700Answer by Jeffrey Knight for How to bind a view with multiple ObservableCollectionJeffrey Knight2009-05-25T05:44:50Z2009-05-25T06:17:16Z<p>It sounds like you're using MVVM. You can certainly bind to multiple ObservableCollections. The question really is: <strong>do you need to</strong>? You should reserve binding to ObserableCollections for cases where your ViewModel is changing and you need to keep your View updated with the changes. </p>
<p>Here's an example I whipped up for you of a View bound to two ObservableCollections and one List in a ViewModel. So -- yes -- you can certainly bind to whatever you want. In this example, the two ObservableCollections will alternate updating. Does that help?</p>
<p>I posted the code for this <a href="http://www.rootsilver.com/files/905392.zip" rel="nofollow">here</a> if it helps to have the whole vs project.</p>
<p>View:</p>
<pre><code><Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<StackPanel Orientation="Vertical">
<TextBlock>Bind to List:</TextBlock>
<ListView ItemsSource="{Binding Path=Users}" Height="20"/>
<TextBlock>Bind to ObservableCollection1:</TextBlock>
<ListView ItemsSource="{Binding Path=ObservableCollection1}"
Height="100"/>
<TextBlock>Bind to ObservableCollection2:</TextBlock>
<ListView ItemsSource="{Binding Path=ObservableCollection2}"
Height="100"/>
</StackPanel>
</Window>
</code></pre>
<p>ViewModel (View is bound to this ViewModel)</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Timers;
using System.Windows;
using System.Windows.Threading;
namespace WpfApplication1
{
public class Class1
{
public List<string> Users{get;set;}
public ObservableCollection<string> ObservableCollection1 { get; set; }
public ObservableCollection<string> ObservableCollection2 { get; set; }
public Class1()
{
this.Users = new List<string>{ "bob", "mary" };
this.ObservableCollection1 = new ObservableCollection<string>();
this.ObservableCollection2 = new ObservableCollection<string>();
int counter = 0;
Timer t1 = new Timer();
t1.Enabled = true;
t1.Interval = 1000;
t1.Elapsed += delegate
{
Application.Current.Dispatcher.Invoke(
DispatcherPriority.Send, new Action(delegate
{
if(counter % 2 == 1)
this.ObservableCollection1.Add(DateTime.Now.ToString());
else
this.ObservableCollection2.Add(DateTime.Now.ToString());
++counter;
}));
};
}
}
}
</code></pre>
http://stackoverflow.com/questions/844653/wfp-mvvm-good-reasons-not-to-place-vms-in-separate-assembly/878908#8789080Answer by Jeffrey Knight for WFP MVVM: Good reasons *not* to place VM's in separate assembly?Jeffrey Knight2009-05-18T17:37:41Z2009-05-18T17:37:41Z<p>2 weeks now with my Model & View Models in a dll, my xaml in an exe and no problems whatsoever.</p>
http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/858729#8587290Answer by Jeffrey Knight for How do I get the name of a property from a property in C# (2.0)Jeffrey Knight2009-05-13T15:45:11Z2009-05-13T15:45:11Z<p>See <a href="http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type">http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type</a></p>
http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type4Referring to the property itself in C#. Reflection? Generic? Type?Jeffrey Knight2009-05-12T23:09:42Z2009-05-12T23:28:11Z
<p>Please bear with me if this question isn't well formulated. Not knowing is part of the problem.</p>
<p>An example of what I'd like to accomplish can be found in PropertyChangedEventArgs in WPF. If you want to flag that a property has changed in WPF, you do it like this:</p>
<pre><code>PropertyChanged(this, new PropertyChangedEventArgs("propertyName"));
</code></pre>
<p>You pass a <b>string</b> to PropertyChangedEventArgs that refers to the <b>property name</b> that changed.</p>
<p>You can imagine that I don't really want hard coded strings for property names all over my code. Refactor-rename misses it, of course, which makes it not only aesthetically unappealing but error prone as well.</p>
<p>I'd much rather <b>refer to the property itself</b> ... somehow. </p>
<pre><code>PropertyChanged(this, new PropertyChangedEventArgs(?SomeClass.PropertyName?));
</code></pre>
<p>It seems like I should be able to wrap this in a short method that lets me say something like the above.</p>
<pre><code>private void MyPropertyChanged(??) {
PropertyChanged(this, new PropertyChangedEventArgs(??.ToString()??));
}
... so I can say something like:
MyPropertyChanged(Person.Name); //where I'm interested in the property *itself*
</code></pre>
<p>So far I'm drawing a blank.</p>
http://stackoverflow.com/questions/454868/handling-dialogs-in-wpf-with-mvvm/840720#8407203Answer by Jeffrey Knight for Handling Dialogs in WPF with MVVMJeffrey Knight2009-05-08T16:36:40Z2009-05-09T02:35:56Z<p>I suggest foregoing the 1990's modal dialogs and instead implementing a control as an overlay (canvas+absolute positioning) with visibility tied to a boolean back in the VM. Closer to an ajax type control.</p>
<p>This is very useful:</p>
<p><code><BooleanToVisibilityConverter x:Key="booltoVis" /></code></p>
<p>as in:</p>
<p><code><my:ErrorControl Visibility="{Binding Path=ThereWasAnError, Mode=TwoWay, Converter={StaticResource booltoVis}, UpdateSourceTrigger=PropertyChanged}"/></code></p>
<p>Here's how I have one implemented as a user control. Clicking on the 'x' closes the control in a line of code in the usercontrol's code behind. (Since I have my Views in an .exe and ViewModels in a dll, I don't feel bad about code that manipulates UI.)</p>
<p><img src="http://img4.imageshack.us/img4/9564/wpfdialog.jpg" alt="Wpf dialog" /></p>
http://stackoverflow.com/questions/823294/two-c-naming-conventions-what-do-you-think0Two C# naming conventions: What do you think?Jeffrey Knight2009-05-05T04:08:34Z2009-05-05T06:15:44Z
<p>I have two <em>specific</em> C# coding conventions I've been practicing with mixed feelings.
I'd be curious to hear what people think. They are:</p>
<p><strong>#1. Name instances after the class it's an instance of, camelCased</strong></p>
<p><strong>#2: "Matching property names"</strong></p>
<p>Here's the rationale:</p>
<p><strong>#1. Name instances after the class it's an instance of, camelCased</strong></p>
<p>I use this as my default setting for naming convention. Of course, there are exceptions. But used consistently it <em>dramatically</em> improves code clarity and maintainability. The code looks like this:</p>
<pre><code>var dataConnection = new DataConnection();
//not: var dataConn, dbConn, sqlConn, myDbPickOfTheDay etc.
FileInfo fileInfo = new FileInfo();
Timer timer = new Timer();
//etc.
</code></pre>
<p>I'm at the point where code like this causes me physical pain:</p>
<pre><code>DataConnection dbConn = new DataConnection();
</code></pre>
<p>I can't stress enough how this convention has taken away the pain and anger of the variable name game. </p>
<p>This convention is in sharp contrast to attempting to name things in ways that try to indicate what the instance is doing, which amounts to trying to creatively embed the business case in code. Code has a way of getting refactored to the point where those original names are misleading at best. </p>
<p>To me this convention is gold. It also prevents the horrible practice of slightly tweaked variable names for the same thing. </p>
<p>An example of this convention in practice is:</p>
<pre><code>class Person { ...
public string FirstName { get; set; }
//and then
var person = new Person();
person.FirstName = firstName; //where firstName comes from somewhere else.
</code></pre>
<p>Very easy to read. Very boring. Boring is good when it comes to maintaining code.</p>
<p><em>However</em>, this convention leads me to #2:</p>
<p><strong>#2 "Matching property names"</strong> ( for lack of a better title )</p>
<p>Here's an example:</p>
<pre><code>public class ShoppingCart { ..
private Item item;
public Item Item { //<---- ?
get { return this.item; } ...
</code></pre>
<p>The compiler is perfectly happy with this. And, in fact, it exposes a very nice interface:</p>
<pre><code>//notice how tempting it is to just say "ShoppingCart cart ... "
ShoppingCart shoppingCart = new ShoppingCart();
shoppingCart.Item = item;
</code></pre>
<p>Now, the alternative is to be creative -- You actually need to drum up two good variable names for Item: the public property name and the private member variable name. </p>
<p>How many times have you seen this and just want to retire immediately?</p>
<pre><code> public class ShoppingCart { ..
private Item cartItem;
public Item ShoppingCartItem {
get { return this.cartItem; } ..
///....
ShoppingCart userShoppingCart = new ShoppingCart();
userShoppingCart.ShoppingCartItem = userSelection;
</code></pre>
<p>I feel strongly enough about convention #1 that I think I can live with #2.</p>
<p>What do you think ?</p>
http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#8163761Answer by Jeffrey Knight for IoC, Dll References, and Assembly ScanningJeffrey Knight2009-05-03T05:04:14Z2009-05-03T05:10:22Z<p>I finally got this sorted out. It looks like this:</p>
<p><img src="http://img396.imageshack.us/img396/1343/iocuml.jpg" alt="IoC Uml" /></p>
<p>with the assemblies</p>
<ul>
<li>Core.exe
<li>PersonBase.dll (references by Core.exe)
<li>Bob.dll (loaded up run time via StructureMap Scan)
<li>Betty.dll (loaded up run time via StructureMap Scan)
</ul>
<p>To get it with StructureMap, I needed a custom "ITypeScanner" to support scanning for assemblies:</p>
<pre><code>public class MyScanner : ITypeScanner {
public void Process(Type type, PluginGraph graph) {
if(type.BaseType == null) return;
if(type.BaseType.Equals(typeof(PersonBase))) {
graph.Configure(x =>
x.ForRequestedType<PersonBase>()
.TheDefault.Is.OfConcreteType(type));
}
}
}
</code></pre>
<p>So my main code looks like:</p>
<pre><code>ObjectFactory.Configure(x => x.Scan (
scan =>
{
scan.AssembliesFromPath(Environment.CurrentDirectory
/*, filter=>filter.You.Could.Filter.Here*/);
//scan.WithDefaultConventions(); //doesn't do it
scan.With<MyScanner>();
}
));
ObjectFactory.GetAllInstances<PersonBase>()
.ToList()
.ForEach(p =>
{ Console.WriteLine(p.FirstName); } );
</code></pre>
http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning3IoC, Dll References, and Assembly ScanningJeffrey Knight2009-04-30T21:00:20Z2009-05-03T05:10:22Z
<p>Although this question is related to StructureMap, my <i>general</i> question is: </p>
<blockquote>
<p>When wiring up components with an IoC
container <b>in code</b> (as opposed
to configuring via <b>xml</b>) do you
generally need explicit project/build
references to all assemblies?</p>
</blockquote>
<p>Why the separate assemblies? Because:</p>
<p><hr /></p>
<blockquote>
<p>"Abstract classes residing in a
separate assembly from their concrete
implementations are a great way to
achieve such separation." -<b>Framework
Design Guidelines p.91</b></p>
</blockquote>
<p><hr /></p>
<p>Example:</p>
<p>Let's say I have <em>PersonBase.dll</em> and <em>Bob.dll</em></p>
<p><em>Bob</em> inherits from the abstract class <em>PersonBase</em>. They're both in the <em>Person</em> namespace. <b>But in different assemblies</b>.</p>
<p>I'm programming to <em>PersonBase</em>, not <em>Bob</em>.</p>
<p>Back in my main code, I need a person. StructureMap can scan assemblies. Great, I'll ask StructureMap for one!</p>
<p>Now, in my main code, I am of course referring only to <em>PersonBase</em>, not to <em>Bob</em>. I actually don't want my code to know <em>anything</em> about <em>Bob</em>. No project references, no nuthin. That's the whole point.</p>
<p>So I want to say:</p>
<pre><code>//Reference: PersonBase.dll (only)
using Person;
...
//this is as much as we'll ever be specific about Bob:
Scan( x=> { x.Assembly("Bob.dll"); }
//Ok, I should now have something that's a PersonBase (Bob). But no ?
ObjectFactory.GetAllInstances<PersonBase>().Count == 0
</code></pre>
<p>No luck. What does work is being explicit that I want Bob:</p>
<pre><code>//Reference: PersonBase.dll and Bob.dll
using Person;
...
Scan( x => {x.Assembly("Bob.dll"); }
//If I'm explicit, it works. But Bob's just a PersonBase, what gives?
ObjectFactory.GetAllInstances<Bob>().Count == 1 //there he is!
</code></pre>
<p>But now I've had to reference <em>Bob.dll</em> in my project which is exactly what I didn't want. </p>
<p>I can avoid this situation using Spring + Xml configuration. But then I'm back to Spring + Xml configuration ... !</p>
<blockquote>
<p>Am I missing something with using
StructureMap, or as a general
principle, do (fluent) IoC
configurations need explict references
to all assemblies?</p>
</blockquote>
<p>Possibly related question: <a href="http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies">http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies</a></p>
http://stackoverflow.com/questions/768304/wpf-mvvm-convention-over-configuration-for-resourcedictionary2WPF MVVM: Convention over Configuration for ResourceDictionary ? Jeffrey Knight2009-04-20T13:40:26Z2009-05-01T19:01:11Z
<p><hr /></p>
<p><b>Update</b></p>
<p>In the wiki spirit of StackOverflow, here's an update: </p>
<p>I spiked Joe White's IValueConverter suggestion below. It works like a charm. </p>
<p>I've written a "quickstart" example of this that automates the mapping of ViewModels->Views using some cheap string replacement. If no View is found to represent the ViewModel, it defaults to an "Under Construction" page. I'm dubbing this approach "WPF MVVM White" since it was Joe White's idea. Here are a couple screenshots.</p>
<p>The first image is a case of "[SomeControlName]ViewModel" has a corresponding "[SomeControlName]View", based on <b>pure naming convention</b>. The second is a case where the ModelView doesn't have any views to represent it. No more ResourceDictionaries with long ViewModel to View mappings. It's pure naming convention now.</p>
<p><img src="http://img14.imageshack.us/img14/4292/mvvmwhite3.jpg" alt="Wpf Mvvm White"></p>
<p>I'm hosting a download of the project here:
<a href="http://rootsilver.com/files/Mvvm.White.Quickstart.zip" rel="nofollow">http://rootsilver.com/files/Mvvm.White.Quickstart.zip</a></p>
<p>I'll follow up with a longer blog post walk through.</p>
<p><hr /></p>
<p><b>Original Post</b></p>
<p>I read Josh Smith's <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">fantastic MSDN article</a> on WPF MVVM over the weekend. It's destined to be a cult classic.</p>
<p>It took me a while to wrap my head around the magic of asking WPF to render the <b>ViewModel</b>. </p>
<p>It's like saying "Here's a class, WPF. Go figure out which UI to use to present it."</p>
<p>For those who missed this magic, WPF can do this by looking up the <b>View</b> for <b>ModelView</b> in the ResourceDictionary mapping and pulling out the corresponding <b>View</b>. (Scroll down to <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">Figure 10 Supplying a View </a>). </p>
<p>The first thing that jumps out at me immediately is that there's already a strong naming convention of:</p>
<pre><code>classNameView ("View" suffix)
classNameViewModel ("ViewModel" suffix)
</code></pre>
<p>My question is:</p>
<p>Since the <a href="http://msdn.microsoft.com/en-us/library/system.windows.resourcedictionary.aspx" rel="nofollow">ResourceDictionary</a> can be manipulated programatically, I"m wondering if anyone has managed to Regex.Replace the whole thing away, <b>so the lookup is automatic</b>, and any new View/ViewModels get resolved by virtue of their naming convention?</p>
<p>[Edit] What I'm imagining is a hook/interception into ResourceDictionary. </p>
<p>... Also considering a method at startup that uses interop to pull out <code>*View$</code> and <code>*ViewModel$</code> class names to build the DataTemplate dictionary in code:</p>
<pre><code>//build list
foreach ....
String.Format("<DataTemplate DataType=\"{x:Type vm:{0} }\"><v:{1} /></DataTemplate>", ...)
</code></pre>
http://stackoverflow.com/questions/807998/how-do-i-create-a-c-app-that-decides-itself-whether-to-show-as-a-console-or-wind/809161#8091612Answer by Jeffrey Knight for How do I create a C# app that decides itself whether to show as a console or windowed app?Jeffrey Knight2009-04-30T21:22:58Z2009-04-30T21:22:58Z<p>I blogged about this a while back <a href="http://www.rootsilver.com/2007/08/how-to-create-a-consolewindow" rel="nofollow">How To Create a Console/Window Hybrid Application in C#</a></p>
http://stackoverflow.com/questions/794882/wpf-event-bitmapimage-propertychanged-calling-thread-cannot-access0WPF Event: BitmapImage PropertyChanged: "Calling Thread Cannot access"Jeffrey Knight2009-04-27T19:13:34Z2009-04-27T20:16:24Z
<p>I'm trying to understand what it is about the following code that <b>is</b> perfectly happy with loading a text file and displaying its contents, but <b>isn't</b> happy with loading a BitmapImage and displaying it on a timer.Elapsed event handler. </p>
<p>I understand it has to do with the UI thread. </p>
<p>But why is this not a problem for the textfile example?</p>
<p>First, the XAML:</p>
<pre><code><Window x:Class="WpfApplication7.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Path=Message, UpdateSourceTrigger=PropertyChanged}" FontSize="20" Height="40" Width="300" Background="AliceBlue" />
<Image Source="{Binding Path=Image,UpdateSourceTrigger=PropertyChanged}" Height="100" Width="100"/>
</StackPanel>
</Window>
</code></pre>
<p>and the C#, which raises a PropertyChangedEventHandler on a timer:</p>
<pre><code>using System;
using System.ComponentModel;
using System.Timers;
using System.Windows;
using System.IO;
using System.Windows.Threading;
using System.Windows.Media.Imaging;
</code></pre>
<p>and</p>
<pre><code>namespace WpfApplication7
{
public partial class Window1 : Window, INotifyPropertyChanged
{
public BitmapImage Image { get; private set; }
public string Message { get; set; }
public event PropertyChangedEventHandler PropertyChanged = delegate { };
private Timer timer;
public Window1()
{
InitializeComponent();
this.DataContext = this;
this.timer = new Timer { Enabled = true, Interval = 100 };
this.timer.Elapsed += (s, e) =>
{
//---happy loading from text file. UI updates :)
this.Message = File.ReadAllText(@"c:\windows\win.ini").Substring(0, 20);
PropertyChanged(this, new PropertyChangedEventArgs("Message"));
//---not happy loading a BitmapImage. PropertyChanged unhappy :(
// (Don't make me have to: ! )
//Application.Current.Dispatcher.Invoke(
//DispatcherPriority.Send, new Action(delegate
//{
this.Image = new BitmapImage(new Uri(@"C:\WINDOWS\Web\Wallpaper\Ascent.jpg"));
//Edit --Ah hah, thanks Daniel !
// DependencyObject-> Freezable-> Animatable->
// ImageSource-> BitmapSource-> BitmapImage
this.Image.Freeze(); //<--- this will fix it, no need for Dispatcher
//Without Dispatcher or Freeze() ... right here:
//"The calling thread cannot access this object because a different thread owns it."
PropertyChanged(this, new PropertyChangedEventArgs("Image"));
//}));
};
}
}
}
</code></pre>
<p>I know I can fix this with a "Application.Current.Dispatcher.Invoke". So fixing it isn't the problem. Not understanding why I should have to is the problem :)</p>
<p><i>Similar</i> questions</p>
<ul>
<li><p><a href="http://stackoverflow.com/questions/36748/asynchronously-loading-a-bitmapimage-in-c-using-wpf">http://stackoverflow.com/questions/36748/asynchronously-loading-a-bitmapimage-in-c-using-wpf</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app">http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app</a></p></li>
</ul>
http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app/790236#7902360Answer by Jeffrey Knight for Making sure OnPropertyChanged() is called on UI thread in MVVM WPF appJeffrey Knight2009-04-26T04:30:50Z2009-04-26T04:53:08Z<p>I had a similar scenario just this week (MVVM here too). I had a separate class doing its thing, reporting back status on an event handler. The event handler <i>was being called as expected, and I could see the results coming back right on time with Debug.WriteLine's</i>.</p>
<p>But with WPF, no matter what I did, the UI would not update until the process was complete. As soon as the process finished, the UI would update as expected. It was as if it was getting PropertyChanged, but waiting for the thread to complete before doing the UI updates all at once. </p>
<p>(Much to my dismay, the same code in Windows.Forms with a DoEvents and .Refresh() worked like a charm.)</p>
<p>So far, I've resolved this by starting the process on its own thread:</p>
<pre><code>//hook up event handler
myProcess.MyEvent += new EventHandler<MyEventArgs>(MyEventHandler);
//start it on a thread ...
ThreadStart threadStart = new ThreadStart(myProcess.Start);
Thread thread = new Thread(threadStart);
thread.Start();
</code></pre>
<p>and then in the event handler:</p>
<pre><code>private void MyEventHandler(object sender, MyEventArgs e) {
....
Application.Current.Dispatcher.Invoke(
DispatcherPriority.Send,
(DispatcherOperationCallback)(arg =>
{
//do UI updating here ...
}), null);
</code></pre>
<p>I'm not recommending this code, since I'm still trying to understand the WPF thread model, how Dispatcher works, and why in my case the UI wouldn't update until the process was complete even with event handler getting called as expected (by design?). But this has worked for me so far.</p>
<p>I found these two links helpful:</p>
<p><a href="http://www.nbdtech.com/blog/archive/2007/08/01/Passing-Wpf-Objects-Between-Threads-With-Source-Code.aspx" rel="nofollow">http://www.nbdtech.com/blog/archive/2007/08/01/Passing-Wpf-Objects-Between-Threads-With-Source-Code.aspx</a></p>
<p><a href="http://srtsolutions.com/blogs/mikewoelmer/archive/2009/04/17/dealing-with-unhandled-exceptions-in-wpf.aspx" rel="nofollow">http://srtsolutions.com/blogs/mikewoelmer/archive/2009/04/17/dealing-with-unhandled-exceptions-in-wpf.aspx</a></p>
http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/790218#79021846Answer by Jeffrey Knight for What are the dark corners of Vim your mom never told you about?Jeffrey Knight2009-04-26T04:03:04Z2009-04-26T04:03:04Z<p><b>:! [command]</b> executes an external command while you're in vim.</p>
<p>But add a dot after the colon -- :.! [command] -- and it'll dump the output of the command into your current window. That's <b>: . !</b> </p>
<p>For example:</p>
<pre><code>:.! ls
</code></pre>
<p>I use this a lot for things like adding the current date into a document I'm typing:</p>
<pre><code>:.! date
</code></pre>
http://stackoverflow.com/questions/746366/best-method-for-debugging-a-called-webservice-in-php/786739#7867391Answer by Jeffrey Knight for Best method for debugging a called webservice in php?Jeffrey Knight2009-04-24T16:56:52Z2009-04-24T17:53:42Z<p>I don't know much about PHP <i>debugging</i>, and I'm not sure I follow 'push of the environment onto some kind of stack', but I wonder if netcat + some shell scripting could be useful here for <i>troubleshooting</i> ?</p>
<p>You can use netcat to:</p>
<ul>
<li>Spoof an HTTP Request
<li>Act like a webserver (listen on a port - pick a port, any port!)
</ul>
<p><a href="http://www.plenz.com/netcat-tips" rel="nofollow">http://www.plenz.com/netcat-tips</a></p>
<p>You could use it to stub out a fake webservice on the one end:</p>
<pre><code>echo "<xml .. <node>hello php!</node>" | netcat -lp 80 ... etc
</code></pre>
<p>... and you can certainly use it listening on a port to very clearly see what the incoming requests to the webservice look like. </p>
<p>Could you use a shell script with netcat as middle man that acts like your webservice, immediately returns something generic to make your PHP happy, then passes the request on to your actual appserver and logs the results?</p>
<p>Super simple. </p>
<p><img src="http://img240.imageshack.us/img240/791/netcat.jpg" alt="netcat webserver" /></p>
http://stackoverflow.com/questions/762909/wpf-ioc-specified-visual-is-already-a-child-of-another-visual-or-the-root-of0WPF + IoC: "Specified Visual is already a child of another Visual or the root of a CompositionTarget."Jeffrey Knight2009-04-18T04:41:21Z2009-04-23T16:10:46Z
<p>[Edit: Rethinking architecture along mvvm lines made this problem largely fall away - thanks <a href="http://stackoverflow.com/users/5380/kent-boogaart">@kent</a>]</p>
<p>Using Spring.NET + WPF.</p>
<p>Load two WPF buttons in the config:</p>
<pre><code><object name="Button1" type="System.Windows.Controls.Button, PresentationFramework" >
<property name="Name" value="Next" />
<property name="Width" value="200"/>
<property name="Content" value="Next"/>
</object>
<object name="Button2" type="System.Windows.Controls.Button, PresentationFramework" >
<property name="Name" value="Back" />
<property name="Width" value="200"/>
<property name="Content" value="Back"/>
</object>
</code></pre>
<p>and pass them into the constructor of a xaml class ("code behind")</p>
<pre><code><object name="MyNewScreen" type="MyControls.MyUserControl>
<constructor-arg name="buttons">
<list>
<ref object="Button1"/>
<ref object="Button2"/>
</list>
</object>
</code></pre>
<p>where the class constructor has:</p>
<pre><code>public DataGridControl(ArrayList buttons)
{
//(yes this should be a List<Button> but I can't make spring happy with that)
foreach(var b in buttons) this.stackPanel.Children.Add(b);
...
</code></pre>
<p>Throws a:</p>
<p><code>Specified Visual is already a child of another Visual or the root of a CompositionTarget.</code></p>
<p>Now, I see the .GetHashCode() is the same for both buttons coming from Spring. So I can understand what WPF doesn't like. </p>
<p>But I can't do a <code>XamlReader.Load(new XmlNodeReader(document));</code> as <a href="http://www.google.com/search?q=XamlReader.Load(new+XmlNodeReader(document))%3B" rel="nofollow">some have suggested</a>, without losing my event wiring.</p>
<p>Any ideas how to get around this?</p>
<p>[Edit]
I am wiring up events. Event wiring is not a problem, but it does explain why I'd want to do this in the first place. I'd left this out of the original post for the sake of brevity:</p>
<pre><code><object id="eventListener2" type="MyEventListener">
<listener event="Click" method="b_Click">
<ref object="Button2" />
</listener>
</object>
</code></pre>
http://stackoverflow.com/questions/770517/representing-application-navigation0Representing application navigationJeffrey Knight2009-04-20T23:48:10Z2009-04-21T16:34:35Z
<p>I have a complex application with many pages. </p>
<p>Each page can have many possible routes to other pages: 'A' can go to 'B' or 'C', 'B' can go to 'A' but not 'C'. etc.</p>
<p>Rather than embed this "where to go to next" logic in each page (horror!) I of course want to encapsulate it in a main point of control. 'A' doesn't need to know about 'B' or 'C'.</p>
<p>Even better, I'd like to reduce the problem to a matter of configuration.</p>
<p>This isn't a language/framework specific question -- it's a matter of how best (simple, pragmatic) to represent and interpret Workflow logic.</p>
<p><b>Has anyone had experience representing a complex flow between points in an application as a configurable setting?</b></p>
http://stackoverflow.com/questions/756541/enforcing-dependencies-in-ioc-via-a-constructor3Enforcing dependencies in IoC via a constructor?Jeffrey Knight2009-04-16T15:00:30Z2009-04-16T23:27:48Z
<p>I'm trying to come to terms with using IoC/Dependency Injection while at the same time programming to contracts rather than specific classes. The dilemma I'm having is the tension between:</p>
<ol>
<li><p><strong>Do program to interfaces for IoC</strong>: I started out with IoC relying heavily on interfaces. Judging by Spring's sample projects, interfaces are the way to go when programing to a contract with IoC. </p></li>
<li><p>( <strong>... although abstract classes generally preferred</strong>: <a href="http://en.csharp-online.net/.NET_Type_Design_Guidelines%E2%80%94Choosing_Between_Class_and_Interface" rel="nofollow">the main drawback of interfaces is that they are much less flexible than classes when it comes to allowing for evolution of APIs</a> )</p></li>
<li><p><strong>Do make class dependencies explicit via constructor</strong>
My gut feeling is that it's good programming practice to pass dependencies in to a class's constructor. Indeed, this <em>is</em> dependency injection.</p></li>
<li><p><strong>... except you can't enforce constructor signature in interfaces/abstract clases</strong>: Neither interfaces or nor abstract classes allow for defining a constructor signature <a href="http://stackoverflow.com/questions/619856/interface-defining-a-constructor-signature">( easily / elegantly )</a>.
See also <a href="http://msdn.microsoft.com/en-us/library/ms229047.aspx" rel="nofollow">Framework Design Guidelines section 4.4:</a> <strong>DO NOT</strong> define public or protected internal constructors in abstract types. ... Constructors should be public only if users will need to create instances of the type.</p></li>
</ol>
<p>This question is related to a previous stackoverflow question: <a href="http://stackoverflow.com/questions/619856/interface-defining-a-constructor-signature">Interface defining a constructor signature?</a> </p>
<p>But my question is: </p>
<p>Since you can't define a constructor in a C# interface/abstract class, as the question above asks, on a practical level:</p>
<p><b>How do you reconcile this with the sensible practice of <a href="http://msdn.microsoft.com/en-us/library/ms229060.aspx" rel="nofollow">passing dependencies in via a constructor</a></b>?</p>
<p>Edit: Thank you for the answers. I'm hoping for some insight on what I <em>should</em> do in this case. Just not use contructor args? Use some sort of Init() method that does take the dependencies?
Edit2: Thanks for the great answers, very helpful.</p>
http://stackoverflow.com/questions/176850/nunit-assembly-not-found/688174#6881742Answer by Jeffrey Knight for NUnit assembly not foundJeffrey Knight2009-03-27T01:20:58Z2009-04-16T23:11:22Z<p>I had the same problem and I had installed using NUnit-2.4.8-net-2.0.msi.
Expanding on the "add to the gac" comment above, here's what I did:</p>
<ul>
<li><p>Open your "visual sudio command prompt (generally: make sure gacutil is in your path) and: cd "C:\Program Files\NUnit 2.4.8\bin"</p></li>
<li><p>Unregister your nunit entries from the gac. You can do this by finding the nunit entries registered in the gac:</p></li>
</ul>
<p>gacutil /l | find /i "nunit" > temp.bat && notepad temp.bat</p>
<ul>
<li>Prepend the nunit.core and nunit.framework lines with "gacutil /uf", i.e.:</li>
</ul>
<p>gacutil /uf nunit.core,Version=2.4.2.0,Culture=neutral,PublicKeyToken=96d09a1eb7f44a77</p>
<p>gacutil /uf nunit.framework,Version=2.4.2.0,Culture=neutral,PublicKeyToken=96d09a1eb7f44a77</p>
<ul>
<li><p>Run your bat file to remove them:
temp.bat</p></li>
<li><p>Register the nunit dlls you need:
gacutil /i nunit.core.dll</p></li>
</ul>
<p>gacutil /i nunit.framework.dll</p>
http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500307#1500307Comment by Jeffrey Knight on Find a jar file given the class name?Jeffrey Knight2009-10-01T05:11:32Z2009-10-01T05:11:32ZI'm not sure if you or Dave Costa answered first, but this does the trick and I can use this script going forward. Thanks!http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500166#1500166Comment by Jeffrey Knight on Find a jar file given the class name?Jeffrey Knight2009-09-30T19:33:06Z2009-09-30T19:33:06ZI'm hoping for an offline option. I often find myself dealing with somewhat obscure jar's from 3rd party vendors.http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500166#1500166Comment by Jeffrey Knight on Find a jar file given the class name?Jeffrey Knight2009-09-30T19:31:22Z2009-09-30T19:31:22Z- jarhoo costs money
- docjar doesn't find "WSSubject" from my example (<a href="http://www.docjar.com/docs2web/s.jsp?q=WSSubject&t=q&start=0" rel="nofollow">docjar.com/docs2web/…</a>).
There must be a 'search local jars' approach typically used by java devs .. ?http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500169#1500169Comment by Jeffrey Knight on Find a jar file given the class name?Jeffrey Knight2009-09-30T19:30:16Z2009-09-30T19:30:16ZFair enough, but what's the standard approach for a java developer on a windows machine that doesn't involve installing cygwin?http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-nameComment by Jeffrey Knight on Find a jar file given the class name?Jeffrey Knight2009-09-30T19:24:21Z2009-09-30T19:24:21ZYes, that is exactly what I am trying to do.http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-typeComment by Jeffrey Knight on Referring to the property itself in C#. Reflection? Generic? Type?Jeffrey Knight2009-05-13T15:43:23Z2009-05-13T15:43:23Zsee also <a href="http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0" rel="nofollow" title="how do i get the name of a property from a property in c 2 0">stackoverflow.com/questions/388775/…</a>http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type/855352#855352Comment by Jeffrey Knight on Referring to the property itself in C#. Reflection? Generic? Type?Jeffrey Knight2009-05-12T23:32:17Z2009-05-12T23:32:17Zthanks -- great insighthttp://stackoverflow.com/questions/844653/wfp-mvvm-good-reasons-not-to-place-vms-in-separate-assemblyComment by Jeffrey Knight on WFP MVVM: Good reasons *not* to place VM's in separate assembly?Jeffrey Knight2009-05-11T14:29:14Z2009-05-11T14:29:14Z"Why would the split not have worked" - that's exactly my question. Are there any technical gotchas here ? http://stackoverflow.com/questions/823294/two-c-naming-conventions-what-do-you-thinkComment by Jeffrey Knight on Two C# naming conventions: What do you think?Jeffrey Knight2009-05-05T14:50:56Z2009-05-05T14:50:56ZI've read and re-read the standard document - <a href="http://msdn.microsoft.com/en-us/library/xzf533w0(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
It's a great reference and I use it. I don't, however, see any advice on convention for instance names, which leave much to the imagination (think of 3rd parties delivering code). So this is all within the standard coding guidelines, not a counter suggestion.
Clearly, there are cases with more than one instance of a given type. This is more by way of default/rule of thumb.
Thanks for the feedback.http://stackoverflow.com/questions/823294/two-c-naming-conventions-what-do-you-think/823321#823321Comment by Jeffrey Knight on Two C# naming conventions: What do you think?Jeffrey Knight2009-05-05T04:33:49Z2009-05-05T04:33:49ZIDesign has a good one too:
<a href="http://www.idesign.net/idesign/DesktopDefault.aspx" rel="nofollow">idesign.net/idesign/DesktopDefault.aspx/…</a>
Also interesting as a guideline to C# is Mono's Coding Guidelines:
<a href="http://mono-project.com/Coding_Guidelines" rel="nofollow">mono-project.com/Coding_Guidelines</a>
Maybe they should both pull theirs since MS offers one? ;)http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809172#809172Comment by Jeffrey Knight on IoC, Dll References, and Assembly ScanningJeffrey Knight2009-05-03T05:11:02Z2009-05-03T05:11:02Zgot this sorted out-- see answer belowhttp://stackoverflow.com/questions/768304/wpf-mvvm-convention-over-configuration-for-resourcedictionary/789315#789315Comment by Jeffrey Knight on WPF MVVM: Convention over Configuration for ResourceDictionary ? Jeffrey Knight2009-05-01T18:58:01Z2009-05-01T18:58:01ZThanks Joe -- I updated this question based on your feedback.http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809172#809172Comment by Jeffrey Knight on IoC, Dll References, and Assembly ScanningJeffrey Knight2009-05-01T14:11:15Z2009-05-01T14:11:15Z[...] .Is.OfConcreteType<Bob>() //<-- you need a dll reference to Bob.dll for thathttp://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/790218#790218Comment by Jeffrey Knight on What are the dark corners of Vim your mom never told you about?Jeffrey Knight2009-05-01T03:43:32Z2009-05-01T03:43:32ZOne other command -- I don't want to open a separate reply: If you have a split window (:sp [filename] or :vert split [filename) you can swap window panes with ^w r http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809107#809107Comment by Jeffrey Knight on IoC, Dll References, and Assembly ScanningJeffrey Knight2009-05-01T02:17:58Z2009-05-01T02:17:58ZThanks for the response Chris :)
If I have to go back to Xml wiring, I'll stick with Spring. I think what I have above is structurally/conceptually sound. My problem is that it seems like Ioc-configured-in-code consistently requires dll references I specifically want to avoid.