Furthermore, since you're using MD, this is where intellisense helps out. If you're not getting autocompletion for a given type then it's likely you don't have the namespace referenced. An easy way to do this is right-click the text and you'll get options to fully qualify the type (whether that's to add a "using" statement or use the types fully qualified name).
-Abe On Mon, Oct 31, 2011 at 1:53 PM, Slide <[email protected]> wrote: > On Mon, Oct 31, 2011 at 10:30 AM, Dotan Cohen <[email protected]> wrote: >> On Mon, Oct 31, 2011 at 19:12, Slide <[email protected]> wrote: >>> You are missing a using for System.Collections.Generic in which >>> List<T> is defined. >>> >> >> Thank you Slide! >> >> I could not find this from googling, please tell me is there a fine >> manual for C# devs to get into Mono where this would be documented? I >> am certain that I will run into other similar issues and I'd like to >> know where exactly beforehand. I have gone through most of the >> examples on the mono-project Start page. >> >> Thanks. >> >> -- >> Dotan Cohen >> > > > The MSDN documentation can be used for looking up stuff that is not > Mono specific (most stuff in the System.* namespaces). There are also > online docs at http://docs.go-mono.com/. Also, as Bernardo mentions, I > would recommend going through some C# tutorials, they would probably > cover stuff like the generic containers. > > Thanks, > > slide > _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
