Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
8answers
315 views

Code “internationalization”

I worked on different projects in different countries and remarked that sometimes the code became internationalized, like SetLargeurEtHauteur() ...
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) ...
9
votes
9answers
142 views

Pass by reference: Which is more readable/right?

I have the following class: public class Person { public String Name { get; set; } } I have a method that takes in Person and a String as parameters: public void ChangeName(Person p, String ...
7
votes
1answer
113 views

Azure/AWS ORM Design Guidelines

I'm designing and implementing .Net ORM that must support both Azure Storage (tables, queues, blobs) and AWS Storage (EBS, SimpleDB, S3) and hide all implementation details behind a common interface. ...
3
votes
2answers
1k views

Android: Best practice for keeping data in Memory and Database at same time

We're designing an Android app that has a lot of data ("customers", "products", "orders"...), and we don't want to query sqlite every time we need some record. We wanna avoid to query database as most ...
3
votes
1answer
722 views

When do you violate SRP (Single Reponsibility Principle)?

SRP(PDF version; HTML version) states that There should never be more than one reason for a class to change When you take a look at Outlook, Calendar Event window, it has "Save and Close" ...
2
votes
2answers
352 views

Abstract Class Design: Why not define public constructores?

Look at here (Abstract Class Design): http://msdn.microsoft.com/en-us/library/ms229047.aspx It says: (1) Do not define public or protected internal (Protected Friend in Visual Basic) constructors in ...
2
votes
2answers
65 views

Design guide-lines for writing a Typed SQL Statement API?

Last night I came up to sometihng intersting while designing my new project that brought me to ask this qustion here. My project is supposed to follow Table Gateway pattern using tradional ADO.Net ...
2
votes
2answers
162 views

What is the FDG for naming boolean properties?

What is the Framework Design Guideline for naming boolean properties? If there isn't one, then what's your recommendation? Let's say I have a User class, and I need a property that specifies if the ...
2
votes
5answers
703 views

Elegant and maintainable way of populating Tree structures in c#

I have a Tree. class TreeNode { public TreeNode(string name, string description) { Name = name; Description = description; } string Name { get; set; } string ...
2
votes
13answers
912 views

Best way of protect a backing field from mistaken use in C#

I have a class (Foo) which lazy loads a property named (Bar). What is your preferred way to protect against mistaken use (due to intellisense or inexperienced staff) of the uninitialized backing ...
1
vote
2answers
138 views

Program hangs while trying to sort ListView WinForms C# using builtin .Sort() method (only Visual Studio is affected)

I'm having some strange problem with ListView that refuses to sort itself properly. I'm using this code on 99% of ListView's in my program and they do work fine. However for one ListView (and it used ...
1
vote
1answer
61 views

Adding a legend for colors in ListView WinForms C#

I have simple ListView with few columns and it's populated with data with background colors. There's like 5 colors in use so I would like to nicely show them next to ListView for easy reminder ...
1
vote
3answers
64 views

Is it good practice to add new classes to framework namespaces?

A long time ago, I remember reading a quite strong recommendation from Microsoft against adding your own classes to framework namespaces. I've been unsuccessfully searching for it. The main reason I ...
1
vote
4answers
92 views

Hide or Disable? In this example and in general

I have the following set of controls. Scenario 1: If you select one of the first 3 radio buttons and click enter, focus will jump to the Passport Number text box. If the user selects "Other", the ...
1
vote
4answers
221 views

At what level of abstraction does Single Responsibility Principle (SRP) no longer make sense?

I'm getting push back on a design from a colleague, and am wondering if there's consensus as to who is correct on application of SRP in this case. I see SRP as relating mostly to the lower-level ...
0
votes
2answers
71 views

how is a user interface usually built?

I have four classes flight, passenger, seating chart, and waiting list. I'm trying to create a gui. I am new to swing so I dont know how it is done. should I create a separate class for a gui and ...
0
votes
0answers
13 views

HIG for the web?

The Apple HIG is a really useful and thought provoking document. As well as setting the ground rules for what you should and shouldn't do, it has some interesting discussion about general UI usability ...
0
votes
2answers
797 views

Rails Newbie: Recommendations for error handling in controller

Sorry if the question is obvious, I am only starting to work with Rails. I have a following code in several controller methods now: respond_to do |format| if @project.save format.html { ...
0
votes
2answers
162 views

Guidelines for writing a test suite

What are the best practices/guidelines for writing test suite for C++ projects?