Umm yeah.
class A
{
public class B : A
{
}
}
//slightly weird
class C : A.B
{
public void Foo(C.B b)
{
}
}
//Love the edge conditions
class D : A
{
public void Foo(D.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B b)
{
}
}
vyIKB7
Nice!
i dont get it
Opens possibilities of code poetry for the REALLY bored .NET coders:
http://internetducttape.com/2007/02/14/show-your-geek-love-with-code-poetry-in-perl/
class A
{
public class B : A
{
}
}
class C : A
{
public void Foo(A.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B.B b)
{
}
}
LOL! Great find!
Love it!