vote up 1 vote down star

Why is the following code snippet valid in C#? This is a feature of the compiler or a bug?

class A
{
    public class B : A
    {

    }
}

class C : A.B
{
    public void Foo(C.B b)
    {

    }
}

class D : A
{
    public void Foo(D.B.B.B.B b)
    {

    }
}

See Also

.NET Nested Classes

flag

I don't see, why you included the C class. I think the question would be the same (and a bit shorter) if you removed it ... – MartinStettner Apr 1 at 22:05
Because C inherits from sub-class that doesn't have 'explicit' sub-classes. Weird in its own way. – alex Apr 1 at 22:38

5 Answers

vote up 6 vote down check

It's legal code, but quirky. I can dig out the bit in the spec about name resolution if you want - but it's definitely legal. I've had a conversation about a similar topic with Eric Lippert before. Strangely enough, that used D.B.B.B.B... too.

The conversation came up due to this earlier question.

The relevant section of the C# 3.0 spec is 3.8, but it's too long and involved to be worth posting here.

link|flag
vote up 3 vote down
  1. D is an A
  2. A has a nested type B
  3. B is an A
  4. GOTO 2
link|flag
vote up 1 vote down

Note that the code analysis guidelines state that nested types should not be visible.

link|flag
vote up 1 vote down

This is rather amusing. I don't know how it could be any harm, though.

link|flag
vote up 0 vote down

See link as it is very similar to a question I had a few months ago...

http://stackoverflow.com/questions/455928/-net-nested-classes

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.