Without running this code, what Foo method will be ran:

    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 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?

EDIT: Url I found it at: http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html