Prev: VWD 2010 Express calls Win32 DLL
Next: Reminder - Microsoft Responds to the Evolution of Community
From: Peter Duniho on 29 Jun 2010 01:54 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
|
Pages: 1 Prev: VWD 2010 Express calls Win32 DLL Next: Reminder - Microsoft Responds to the Evolution of Community |