Click here to Skip to main content
15,887,477 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: How to find the similarity between users in Twitter ? How to design a good and efficient idea? Pin
Marc Koutzarov29-Aug-14 23:54
professionalMarc Koutzarov29-Aug-14 23:54 
QuestionClient - Server approach Pin
bugal21-Dec-12 0:33
bugal21-Dec-12 0:33 
AnswerRe: Client - Server approach Pin
jschell22-Dec-12 14:11
jschell22-Dec-12 14:11 
QuestionHow do you design this ? Pin
Eytukan18-Dec-12 2:33
Eytukan18-Dec-12 2:33 
AnswerRe: How do you design this ? Pin
Pete O'Hanlon18-Dec-12 2:47
mvePete O'Hanlon18-Dec-12 2:47 
GeneralRe: How do you design this ? Pin
Eytukan18-Dec-12 2:54
Eytukan18-Dec-12 2:54 
GeneralRe: How do you design this ? Pin
Pete O'Hanlon18-Dec-12 3:02
mvePete O'Hanlon18-Dec-12 3:02 
GeneralRe: How do you design this ? Pin
Lampridis Vasilis30-Dec-12 0:04
Lampridis Vasilis30-Dec-12 0:04 
I guess the egg is an object with many things in it other than how it moves. Does the way it movers affects other things, like graphics etc? If yes look for "component design pattern".

If it is just a different way of movement then you can use this:

C#
Interface IMovementMethod
{
    public void Move(Egg AnEgg,...);
}
Class Egg
{
    public IMovementMethod MovementMethod {get; set;}
    public void Move(...)
    {
        MovementMethod.Move(this,...)
    }
}

This way you can change the MovementMethod property if you want to change the way it moves.
GeneralRe: How do you design this ? Pin
Eytukan30-Dec-12 18:00
Eytukan30-Dec-12 18:00 
AnswerRe: How do you design this ? Pin
jschell18-Dec-12 8:14
jschell18-Dec-12 8:14 
GeneralPlease hold on Pin
Eytukan18-Dec-12 18:59
Eytukan18-Dec-12 18:59 
GeneralRe: How do you design this ? Pin
Eytukan30-Dec-12 17:59
Eytukan30-Dec-12 17:59 
GeneralRe: How do you design this ? Pin
jschell31-Dec-12 9:12
jschell31-Dec-12 9:12 
Questionportability/deployment Pin
Member 838594911-Dec-12 4:39
Member 838594911-Dec-12 4:39 
AnswerRe: portability/deployment Pin
jschell11-Dec-12 10:07
jschell11-Dec-12 10:07 
AnswerRe: portability/deployment Pin
Mycroft Holmes16-Dec-12 11:59
professionalMycroft Holmes16-Dec-12 11:59 
GeneralRe: portability/deployment Pin
jschell17-Dec-12 8:40
jschell17-Dec-12 8:40 
Question.NET vs WINRT on Windows 8 Pin
devvvy9-Dec-12 15:13
devvvy9-Dec-12 15:13 
AnswerRe: .NET vs WINRT on Windows 8 Pin
Richard MacCutchan9-Dec-12 22:12
mveRichard MacCutchan9-Dec-12 22:12 
GeneralRe: .NET vs WINRT on Windows 8 Pin
devvvy10-Dec-12 2:52
devvvy10-Dec-12 2:52 
AnswerRe: .NET vs WINRT on Windows 8 Pin
Eddy Vluggen9-Dec-12 22:42
professionalEddy Vluggen9-Dec-12 22:42 
GeneralRe: .NET vs WINRT on Windows 8 Pin
devvvy10-Dec-12 2:53
devvvy10-Dec-12 2:53 
GeneralRe: .NET vs WINRT on Windows 8 Pin
Eddy Vluggen10-Dec-12 3:05
professionalEddy Vluggen10-Dec-12 3:05 
GeneralRe: .NET vs WINRT on Windows 8 Pin
devvvy10-Dec-12 3:08
devvvy10-Dec-12 3:08 
GeneralRe: .NET vs WINRT on Windows 8 Pin
Eddy Vluggen10-Dec-12 3:11
professionalEddy Vluggen10-Dec-12 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.