Tagged Questions
100
votes
22answers
3k views
Overengineering - How to avoid it
Sometimes I find myself designing my classes for a certain project. I start with some entities, some interfaces, but after some time I think:
Hey what about creating a handler for the classes using a ...
92
votes
10answers
9k views
When should I use a struct instead of a class?
MSDN says that you should use structs when you need lightweight objects. Are there any other scenarios when a struct is preferable over a class?
Edit:
Some people have forgotten that:
1. structs can ...
61
votes
32answers
6k views
C# (.NET) Design Flaws
What do you think are the biggest design flaws in C# or the .NET Framework in general?
My favorites are that there's no non-nullable string type and that you have to check for DBNull when fetching ...
29
votes
22answers
2k views
Why is String.Format static?
Compare
String.Format("Hello {0}", "World");
with
"Hello {0}".Format("World");
Why did the .Net designers choose a static method over an instance method? What do you think?
28
votes
11answers
6k views
Why is it impossible to override a getter-only property and add a setter?
Why do you think (or, why is it good that) Microsoft chose not to allow:
public abstract class BaseClass
{
public abstract int Bar { get;}
}
public class ConcreteClass : ...
25
votes
14answers
2k views
Partial Classes - are they bad design?
I'm wondering why the 'partial class' concept even exists in C#/VB.NET. I'm working on an application and we are reading a (actually very good) book relavant to the development platform we are ...
25
votes
6answers
2k views
Why seal a class?
I'd like to hear what is the motivation behind the bulk of sealed classes in the .Net framework. What is the benefit of sealing a class? I cannot fathom how not allowing inheritance can be useful and ...
18
votes
10answers
2k views
Why are circular dependencies considered harmful?
Why is it a bad design for an object to refer to another object that refers back to the first one?
15
votes
11answers
997 views
When is using the C# ref keyword ever a good idea?
The more I see ref used in production code, the more misuse I encounter and the more pain it causes me. I have come to hate this keyword, because from a framework-building standpoint, it seems silly. ...
14
votes
3answers
339 views
What are some best practices for making sure your .NET code will scale well?
Last week I interviewed for a position at a TripleA MMORPG game company here in NE. I didn't get the job but one of the areas that came up during the interview was the about the scalability of the ...
14
votes
4answers
581 views
Application Strangler Pattern Experiences & Thoughts
Just recently I came over an idea called the Application Strangler Pattern. As I understand it it is a solution to the problem with large legacy systems. The idea is to create a new application around ...
13
votes
2answers
1k views
Windows design guidelines and Visual Studio
Does anyone have a good strategy for adhering to Windows Design Guidelines with Windows Forms development in Visual Studio (2008)
For example just tring to adhere to font recommendations in Windows ...
12
votes
13answers
2k views
Should I return 'null' or an empty array?
Suppose you have a method that should create and return an array of some sort. What if the array doesn't get populated. Do you return an empty array or null/nothing?
11
votes
4answers
120 views
Why do most exceptions omit instance-specific information?
I've noticed that most exception messages don't include instance-specific details like the value that caused the exception. They generally only tell you the "category" of the error.
For example, when ...
11
votes
5answers
245 views
How to catch DB errors and translate them into meaningful information for the business layer?
Usually I have to insert some data in a DB and it can't be inserted because the table has constraints preventing me from doing that. With the app I'm developing, some business rules (like "there are ...
11
votes
6answers
512 views
“Base abstract generic class is a bad choice in most situations.” Why? (Or Why not)
I have just seen on the comment to a blog post:
Base abstract generic class is a bad
choice in most situations
Is this true, if not why?
What insight(s) leads to this statement?
11
votes
2answers
514 views
Extension Methods vs Static Utility Class
I'm looking for some pros and cons for using extension methods over static utility classes in a C# app.
For instance, a plus in the extension methods column is the convinience of calling by the class ...
11
votes
9answers
725 views
New .NET architecture concepts
I posted this community wiki in the hopes of creating a thread of expertise. My question is thus ... "Where do the experts go to learn about the newest .NET coding techniques?".
I'm basically looking ...
11
votes
7answers
8k views
Non Public Members for C# Interfaces
In C#, when you implement an interface all members are public by default. Do you think it's better if we can specify the accessibility modifier (protected, internal, except private of course) or ...
10
votes
5answers
202 views
When is it correct to create an extension method?
I have a piece of code like the following:
public class ActivityHelper
{
public void SetDate(IList<Activity> anActivityList)
{
foreach(Activity current in anActivityList)
...
10
votes
4answers
339 views
Where and how to use nested classes?
I am thinking that if a class will be instantiated only in another class so it is right to use it nested in that class.I think this will help us good design.When i look at my project i have almost ...
10
votes
10answers
3k views
What is the difference between framework and architecture?
Really want to know diffenrence between framework and architecture.
like dotnetnuke is the framework and mvc is the architecture.
so if we take both this as a example. then can anyone tell me ...
10
votes
11answers
555 views
.NET class design question
I have a class called Question that has a property called Type. Based on this type, I want to render the question to html in a specific way (multiple choice = radio buttons, multiple answer = ...
10
votes
4answers
703 views
Should I use enum or query a table in my database?
In my database I have tables that define types for example
Table: Publication Types
ID | Type
----------
1 | Article
2 | Abstract
3 | Book
....
Which is related through the ID key to a ...
10
votes
19answers
1k views
What does it take to be a better OO programmer?
I’ve almost 6 years of experience in application development using .net technologies. Over the years I have improved as a better OO programmer but when I see code written by other guys (especially the ...
9
votes
4answers
148 views
C# .NET GetHashCode function question
Hi I have a class with 6 string properties. A unique object will have different values for atleast one of these fields
To implement IEqualityComparer's GetHashCode function, I am concatenating all 6 ...
9
votes
3answers
1k views
Why doesn't ICollection<T> implement ICollection?
This is a duplicate of: Why IEnumerable<T> inherits from IEnumerable?
IList<T> implements IList. (Edit: No it doesn't; I knew this - not sure why I wrote it.)
IEnumerable<T> ...
9
votes
6answers
304 views
Best Type to set as return type for methods that return a collection?
Which is the best type to us for returning collections?
Should I use IList<T>, IEnumerable<T>, IQueryable<T>, something else? Which is best and why?
I'm trying to decide which I ...
9
votes
3answers
3k views
UI Design of WinForm CRUD App, What works?
I am designing a WinForms CRUD "like" app for a large group of Nurses and Social Workers to interact with Client information.
There are many different forms(about 30ish) that they need to ...
9
votes
8answers
603 views
Website version 2, keep in PHP or move to .Net?
I have a website built in PHP 4 with a framework made by hand by me. The code is 3 years old and I am limited (well it requires a lot of effort to make changes).
I decided to do new version of this ...
8
votes
2answers
561 views
how to get advantage of stateless framework
I would like to use http://code.google.com/p/stateless in my code to separate the functionality from its dependencies. I didn't find any advanced examples of the usage, so this question is about ...
8
votes
5answers
404 views
Are immutable objects good practice?
Should I make my classes immutable where possible?
I once read the book "Effective Java" by Joshua Bloch and he recommended to make all business objects immutable for various reasons. (for example ...
8
votes
3answers
439 views
what's the use of string.Clone()?
there are 2 examples of code:
# 1
string str1 = "hello";
string str2 = str1; //reference to the same string
str1 = "bye"; //new string created
and # 2
string str3 = "hello";
string str4 = ...
8
votes
1answer
108 views
Why .NET exceptions are mutable?
I'm wondering why .NET exceptions classes from Base Class Library has some mutable members by default
Why I can change the Source, HelpLink and values from Data, but can't change anything else like ...
8
votes
1answer
103 views
Is there anything wrong with having a few private methods exposing IQueryable<T> and all public methods exposing IEnumerable<T>?
I'm wondering if there is a better way to approach this problem. The objective is to reuse code.
Let’s say that I have a Linq-To-SQL datacontext and I've written a "repository style" class that wraps ...
8
votes
11answers
555 views
Interface should not have properties?
My office colleague told me today that is bad practice to use properties in interfaces. He red that in some MSDN article(s), which I couldn't find (well I was trying few times on google, probably with ...
7
votes
5answers
208 views
Workaround for an use-case of friend classes in C#
Consider the following code pattern:
// Each foo keeps a reference to its manager
class Foo
{
private FooManager m_manager;
}
// Manager keeps a list of all foos
class FooManager
{
private ...
7
votes
7answers
355 views
Good practice to create extension methods that apply to System.Object?
I'm wondering whether I should create extension methods that apply on the object level or whether they should be located at a lower point in the class hierarchy. What I mean is something along the ...
7
votes
3answers
2k views
Why can static classes not implement interfaces? [closed]
Possible Duplicate:
Why Doesn’t C# Allow Static Methods to Implement an Interface?
In my application I want to use a Repository that will do the raw data access (TestRepository, ...
7
votes
7answers
469 views
How to split code into components… big classes? small classes?
This is very basic stuff, but here goes. I find that I am never able to agree with myself whether the way I split large classes into smaller ones make things more maintainable or less maintainable. I ...
7
votes
5answers
719 views
Why is Object.GetType() a method instead of a property?
From a design perspective, I wonder why the .NET creators chose System.Object.GetType() instead of a System.Object.Type read-only property.
Is it just a (very minor) design flaw or is there rationale ...
7
votes
6answers
502 views
How to put forward a good business case for WPF?
There are many questions about WPF vs Winfoms and the benefits of migrating to wpf, however I have a more specific question, which is probably subjective but would definitely help me justify using ...
7
votes
8answers
442 views
Do any .NET ORMs use constructors “properly”?
This is related conceptually to my question here. However, I've been playing around with NHibernate, and realized what the real core of my question is.
In classic OO design, to properly encapsulate ...
7
votes
3answers
360 views
Splitting application layers into different assemblies
There is a debate going on at my company. Some are advocating moving business, data and business entities in one assembly for
Discoverability purposes. make it easy to find what you're looking ...
7
votes
1answer
567 views
Should MVC Controller be in separate DLL?
I've created a .NET winforms MVC. The Controller and View are in the same EXE. Model is in a set of DLLs that get used by several groups. The MVC is very explicit. Model knows nothing of ...
7
votes
4answers
3k views
Looking for example of Command pattern for UI
I'm working on a WinForm .Net application with the basic UI that includes toolbar buttons, menu items and keystrokes that all initiate the same underlying code. Right now the event handlers for each ...
6
votes
5answers
162 views
c# start async method within object constructor - bad practice?
i have some code in an object constructor similar to
delegate DataSet MyInvoker;
public MyObject(Param1 p1)
{
// property sets here
// ...
BeginMyAsyncMethod();
}
public void ...
6
votes
9answers
486 views
performance of LINQ queries against the SQL equivalent
I’m currently having a debate with someone at work regarding the performance of LINQ queries against the SQL equivalent.
Has anyone done/seen any scientific testing on this?
If not, anecdotal ...
6
votes
3answers
275 views
Method overloading - good or bad design?
I like to overload methods to support more and more default cases. What is the performance impact of method overloading? From your experience, is it advisable to overload methods? What is the limit? ...
6
votes
6answers
2k views
Multi threaded file processing with .NET
There is a folder that contains 1000s of small text files. I aim to parse and process all of them while more files are being populated into the folder. My intention is to multithread this operation as ...