0
votes
1answer
26 views
Cohesion and coupling within a component
How important are coupling and cohesion within a component of an application? Here, I am talking about all those classes in a component that are not published. How important is it …
3
votes
9answers
259 views
How to effectively measure developer’s work hours?
I have a few software developers working for my projects and I would like to provide them a way to register time they spent on real development.
There is good will to register dev …
2
votes
3answers
138 views
C#: Where to implement a custom IEnumerator<T>
Say I have a class that implements IEnumerable<T>. It currently uses the yield keyword in the GetEnumerator() method. But now I need to do a bit more, for example I would lik …
0
votes
0answers
20 views
What replaces Configuration Application Block(of 1.0) in Enterprise Library 4.0 or 4.1?
I remember using Configuration Application Block in Enterprise Library 1.0.
What is the equivalent of it in 4.0 or 4.1 version?
0
votes
1answer
652 views
Getting partially trusted callers error with Microsoft.Practices.EnterpriseLibrary when run exe using UNC path?
I have created a Console App that when I run locally from the command line it works fine.
And it logs to a local file.
When I copy it to another machine and try to run from the co …
3
votes
6answers
441 views
Using Microsoft’s Application Blocks
I haven't done a lot of .NET programming, but I have examined a few of the application blocks published by Microsoft's Patterns and Practices group. I was wondering how these are …
0
votes
3answers
312 views
Prism (Silverlight)
either I'm missing something or the (patterns & practices Composite Application Guidance for WPF and Silverlight) doesn't come with any templates or "guidance packages" to gene …
4
votes
1answer
105 views
The patterns and practices rabbit hole
I generally like to think of myself as a patterns and practices guy. I like the structure and guidelines that they give me, my teams, and my projects. In general I find that deve …
1
vote
3answers
90 views
Learning .NET practices by reading Effective Java, 2nd Edition
Should I read Effective Java, 2nd Edition to learn .Net CLR 2.0 practices? If so, what sections of the book are not well suited for .Net?
Note: My preferred language is C#3.
1
vote
1answer
67 views
Data types between the Service (Application/Controller) and UI layers
Consider the common layered architecture of:
UIService/Application/ControllerDomainPersistancy
What should be the types between the Service and the UI layers?
Should the return …
2
votes
7answers
410 views
Least favourite design pattern
OK, I'm not looking for anti-patterns - I'm looking for things that aren't really patterns, or perhaps patterns that have been abused.
My personal least favourite is the "Helper" …
1
vote
2answers
47 views
What is the proper etiquette for handling potentially reusable legacy code in large projects?
I have been wondering what is the best way to tackle this situation. Is the best way to leave the old code in a comment block in case someone decides to add that functionality int …
1
vote
1answer
301 views
Front Controller vs. Façade pattern
Okay, I have done a bit of searching online and found this thread, but it still does not quite clear it up for me.
What exactly is the difference between a Front Controller Patter …
12
votes
5answers
574 views
The proper way of raising events in the .NET framework
Currently "Avoid checking for null event handlers" is at the top of the answers to the post titled Hidden Features of C# and it contains severely misleading information.
While I u …
0
votes
2answers
191 views
Silverlight (3) best practices
Hi there,
I'm planning a greenfield project using silverlight 3. I was wondering if there are anything like the "smart client software factory" for silverlight...
Cheers,
Ali
