I am curious. What do you mean by: "I am finding that alot with libraries that you can use so many classes." (fyi: i assume you mean "...you can't use...")?
If I have the following class in a Library:
csharp Code:
using System;
using System.Drawing;
public class Foo
{
public static void DoSomething(Garphics gfx)
{
//Do Something
}
}
If I then import that Lib into another project I will have to do one of the following:
csharp Code:
using System.
Drawing;
Garphics GarphicsObject =
new Graphics
();
Foo.
DoSomething(GraphicsObject
);
or
csharp Code:
System.
Drawing.
Garphics GarphicsObject =
new System.
Drawing.
Graphics();
Foo.
DoSomething(GraphicsObject
);
Could you please explain your issue further?
-Doug
__________________
===============================================
Doug Parsons
Wrox online library:
Wrox Books 24 x 7
Did someone here help you? Click

on their post!
"Easy is the path to wisdom for those not blinded by themselves."
===============================================