Click here to Skip to main content
15,893,190 members
Home / Discussions / C#
   

C#

 
GeneralRe: Linq2Sql cannot add an entity Pin
kenajelencres4-Sep-12 23:49
kenajelencres4-Sep-12 23:49 
GeneralRe: Linq2Sql cannot add an entity Pin
Pete O'Hanlon4-Sep-12 23:53
mvePete O'Hanlon4-Sep-12 23:53 
GeneralRe: Linq2Sql cannot add an entity Pin
kenajelencres5-Sep-12 12:47
kenajelencres5-Sep-12 12:47 
GeneralRe: Linq2Sql cannot add an entity Pin
Pete O'Hanlon5-Sep-12 20:13
mvePete O'Hanlon5-Sep-12 20:13 
QuestionStart pages for beginners Pin
mauricemcse4-Sep-12 8:59
mauricemcse4-Sep-12 8:59 
AnswerRe: Start pages for beginners Pin
Eddy Vluggen4-Sep-12 9:03
professionalEddy Vluggen4-Sep-12 9:03 
QuestionRTD help at C# Pin
yatici4-Sep-12 7:39
yatici4-Sep-12 7:39 
AnswerRe: RTD help at C# Pin
Karl Sanford4-Sep-12 9:28
professionalKarl Sanford4-Sep-12 9:28 
GeneralRe: RTD help at C# Pin
yatici4-Sep-12 10:08
yatici4-Sep-12 10:08 
AnswerRe: RTD help at C# Pin
Eddy Vluggen4-Sep-12 22:00
professionalEddy Vluggen4-Sep-12 22:00 
QuestionC# proxy class Pin
sc steinhayse4-Sep-12 6:52
sc steinhayse4-Sep-12 6:52 
AnswerRe: C# proxy class Pin
Pete O'Hanlon4-Sep-12 7:03
mvePete O'Hanlon4-Sep-12 7:03 
GeneralRe: C# proxy class Pin
sc steinhayse4-Sep-12 12:29
sc steinhayse4-Sep-12 12:29 
GeneralRe: C# proxy class Pin
Pete O'Hanlon4-Sep-12 22:06
mvePete O'Hanlon4-Sep-12 22:06 
QuestionHow to do architecture design? Pin
yu-jian4-Sep-12 5:56
yu-jian4-Sep-12 5:56 
AnswerRe: How to do architecture design? Pin
Pete O'Hanlon4-Sep-12 5:59
mvePete O'Hanlon4-Sep-12 5:59 
AnswerRe: How to do architecture design? Pin
Eddy Vluggen4-Sep-12 6:04
professionalEddy Vluggen4-Sep-12 6:04 
GeneralRe: How to do architecture design? Pin
yu-jian4-Sep-12 6:30
yu-jian4-Sep-12 6:30 
GeneralRe: How to do architecture design? Pin
Eddy Vluggen4-Sep-12 6:47
professionalEddy Vluggen4-Sep-12 6:47 
yu-jian wrote:
so these two types have much similar, but the other should use the self-define protocol base on the TCP protocol.

I see.. two classes, who look very similar. And I see a third class, following the same design, implementing all the members that the other two classes have, but somehow ignoring their calls.
C#
class MallardDuck: Duck
{
  public void Quack()
  {
    System.Diagnostics.Debugger.WriteLine("Ku-wack");
  }
}
class RubberDuck: Duck
{
  public void Quack()
  {
    Console.WriteLine("Squeek");
  }
}
class SomeDog: Politician
{
  public void Quack()
  {
    // do nothing
  }
}

Bastard Programmer from Hell Suspicious | :suss:
if you can't read my code, try converting it here[^]

AnswerRe: How to do architecture design? Pin
jschell4-Sep-12 11:51
jschell4-Sep-12 11:51 
QuestionC# windows service Pin
sc steinhayse4-Sep-12 4:56
sc steinhayse4-Sep-12 4:56 
AnswerRe: C# windows service Pin
Pete O'Hanlon4-Sep-12 5:11
mvePete O'Hanlon4-Sep-12 5:11 
GeneralRe: C# windows service Pin
sc steinhayse4-Sep-12 12:25
sc steinhayse4-Sep-12 12:25 
GeneralRe: C# windows service Pin
Dave Kreskowiak4-Sep-12 17:30
mveDave Kreskowiak4-Sep-12 17:30 
AnswerRe: C# windows service Pin
Eddy Vluggen4-Sep-12 5:14
professionalEddy Vluggen4-Sep-12 5:14 

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.