show/hide this revision's text 9 added 206 characters in body

Without running this code, identify which Foo method will be called:

class A
{
   public void Foo( int n )
   {
      Console.WriteLine( "A::Foo" );
   }
}

class B : A
{
   /* note that A::Foo and B::Foo are not related at all */
   public void Foo( double n )
   {
      Console.WriteLine( "B::Foo" );
   }
}

static void Main( string[] args )
{
   B b = new B();
   /* which Foo is chosen? */
   b.Foo( 5 );
}

Which method? And why? No cheating by running the code.

I found this puzzle on the web; I like it and I think I'm going to use it as an interview question...Opinions?

EDIT: I wouldn't judge a candidate on getting this wrong, I'd use it as a way to open a fuller discussion about the C# and CLR itself, so I can get a good understanding of the candidates abilities.

Source: http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html

show/hide this revision's text 8 deleted 4 characters in body

Without running this code, identify which Foo method will be called:

class A
{
   public void Foo( int n )
   {
      Console.WriteLine( "A::Foo" );
   }
}

class B : A
{
   /* note that A::Foo and B::Foo are not related at all */
   public void Foo( double n )
   {
      Console.WriteLine( "B::Foo" );
   }
}

static void Main( string[] args )
{
   B b = new B();
   /* which Foo is chosen? */
   b.Foo( 5 );
}

Which method? And why? No cheating by running the code.

I found this puzzle on the web, and ; I like it and I think I'm going to use it as an interview question...Opinions?

Source: http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html

show/hide this revision's text 7 deleted 49 characters in body; edited tags; edited title

C# Potential Interview Question...Too Question…Too hard?

Without running this code, what identify which Foo method will be rancalled:

class A
{
   public void Foo( int n )
   {
      Console.WriteLine( "A::Foo" );
   }
}

class B : A
{
   /* note that A::Foo and B::Foo are not related at all */
   public void Foo( double n )
   {
      Console.WriteLine( "B::Foo" );
   }
}

static void Main( string[] args )
{
   B b = new B();
   /* which Foo is chosen? */
   b.Foo( 5 );
}

What

Which method? and And why? No cheating by running the code.

I found this puzzle on the web, and I like it and I think I'm going to use it as an interview question...Opinions?

EDIT: Url I found it at

Source: http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html

show/hide this revision's text 6 Rollback to Revision 3
show/hide this revision's text 5 Rollback to Revision 1
show/hide this revision's text 4 Cleanup
show/hide this revision's text 3 edited title
show/hide this revision's text 2 edited title
    Post Made Community Wiki by Community
show/hide this revision's text 1