|
-
Oct 20th, 2005, 02:59 AM
#1
Thread Starter
Hyperactive Member
Finding which System collection to use (RESOLVED)
Hello everybody
I`m using VS .NET 2003. I would like to use the Font System class but I don`t know which collection I need to add. In a book on C# it says that I need the following :
Code:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
Unfortunately, this seems to pertain to VS .NET 2005! How can I find which using collections I need with VS.NET 2003.
Last edited by divined; Oct 20th, 2005 at 05:02 AM.
SteadFast!
-
Oct 20th, 2005, 03:20 AM
#2
Re: Finding which System collection to use
Those are namespaces, not collections. If you want to know what namespace a class is in just go to the MSDN library and do a search for that class, e.g. "Font class". There may be some less useful results if you use the on-line version but the topic for the .NET class will be very near the top, and it will tell you what namespace you need to use.
-
Oct 20th, 2005, 05:02 AM
#3
Thread Starter
Hyperactive Member
Re: Finding which System collection to use
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|