Created
April 25, 2012 17:01
-
-
Save mkrueger/2491317 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace TestConsole | |
{ | |
class Test | |
{ | |
protected class Foo | |
{ | |
public int Bar = 0; | |
} | |
} | |
class MainClass : Test | |
{ | |
class Foo2 : Test.Foo | |
{ | |
public Foo2 () | |
{ | |
Console.WriteLine (Bar); | |
} | |
} | |
} | |
} |
dgrunwald
commented
Apr 25, 2012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment