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.
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.
Re: Finding which System collection to use