From: Peter Duniho on
Stefan Ram wrote:
> The statement
>
> System.Console.WriteLine( System.Console.In.GetType() );
>
> prints
>
> System.IO.TextReader+SyncTextReader
>
> under Microsoft� Visual C# 2010 Express.
>
> What a kind of type is this? (I mean, what does the �+� mean?)

It's a nested type. The declaration in C# would look something like:

namespace System.IO
{
public class TextReader
{
class SyncTextReader : TextReader
{
}
}
}

> Where would one look up the documentation of this type?

It depends. In this case, nowhere. It's not a public type, and thus
has no need to be documented.

Pete