Tagged Questions

1
vote
3answers
118 views

Strategy Pattern - multiple return types/values

We are working on an image processing project using C# and EmguCV. Our team is composed of 3 people. To make faster progress, the 3 of us work on different sub-problems or experime …
1
vote
4answers
88 views

Liskov substitution principle - no overriding/virtual methods?

My understanding of the Liskov substitution principle is that some property of the base class that is true or some implemented behaviour of the base class, should be true for the d …
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 …
10
votes
12answers
299 views

Should software be designed with performance in mind?

Is it advisable to zero-in on design of a component or architecture of a software with performance in mind? What I mean is, how ready should the design/architecture be to used in a …
3
votes
8answers
212 views

When to stop DRYing up the code?

So DRYing up code is supposed to be good thing right? There was a situation in one of the projects I was working on where there were certain models/entities that were more-or-less …
10
votes
15answers
791 views

I’ve heard of DRY and KISS, what other maxims do I need?

Being a self taught programmer, I base most of what I do on KISS and DRY. For me they encapsulate complex ideas well and DO help me to write better code. What else should I know …
4
votes
5answers
164 views

(Programming to an interface v/s working with concrete class) when there is just one concrete class

In an OO component, when you have only one implementation available for an class and that class is not 'published' to other components, is it still advisable to have an interface a …
4
votes
3answers
112 views

Newest Agile Design Methods for code construction

Hallo everybody Recently I've been reading the book: "Agile software development, Principles, Patterns and Practices" by Bob Martin The following (S.O.L.I.D) agile-design-princ …
2
votes
3answers
107 views

Is having Message Box in business class wrong?

Is having reference to System.Windows.Forms in a business class and using MessageBox.Show wrong? Currently have a event processing decorator class decorating a service class. When …
1
vote
8answers
159 views

Which design option is more suitable for auto-correction on construction?

Trying to decipher an appropriate OO design to implement. The basic scenario is that you have a PstnNumber which is essentially a 10 digit phone number that always starts with 0 (e …
6
votes
4answers
158 views

UI Advice: how to design a form with a lot of data

I'm re-writing an app that is a data-entry tool. The existing app is in Access and consists of a form with multiple grids, with each grid containing many columns that requires the …
0
votes
7answers
244 views

OO Software Design Principles

I am a huge fan of software design principles such as SOLID and DRY. What other principles exist for OO software design? Note. I’m not looking for answers like "comment your code …
1
vote
3answers
134 views

what are “Meta-Data design principles”?

I'm looking at a job description that I'm considering applying for, and one of the requirements listed is "Familiar with Meta-Data design principles". Can some give a brief explan …
3
votes
2answers
92 views

Why not all form controls could be rendered via HtmlHelper?

Does anybody know why could some HTML form controls be rendered using System.Web.Mvc.HtmlHelper (hidden, checkbox, password, textbox) and some couldn't and should be explicitly wri …
3
votes
7answers
549 views

Having trouble understanding User Controls in C#

I'm new to usercontrols, having only created one so far, so bear with me. I've been reading today that usercontrols are supposed to be self-contained and not rely on any informatio …

1 2 next
15 30 50 per page