Search Results

2
votes

What is difference between published and public methods / attributes?

In my opinion mentioned white paper talks about target audience of the API rather than the distinction between interface and its implementation. You can find analogy in …
3
votes

Does “Long running method is done” have a design pattern?

Microsoft suggests two patterns for long running methods (invoke asynchronously and rendezvous according to pattern) …
0
votes

A design problem

Well, you named general functionality you'd like to implement. However you didn't mentioned consumers of this functionality. And usage scenarios is the driving force behind design. So in order to p …
2
votes

When to use Factory method pattern?

You can refer to section 9.5 Factories from Framework Design Guidelines 2nd Edition. Here is quoted set of guidelines with respect to using factories over constructors: DO …
1
vote

What makes MVVM uniquely suited to WPF?

I think commanding support (ICommand) in addition to great data binding capabilities makes it suitable for WPF and Silverlight. …