what language?
if it's c# , or another .net language, then you need to include the namespace of that other class in your file.
then, it would depend on your class. if the class is not static, then you would instanciate the object. c# example:
Code:
SomeClass sc = new SomeClass();
we really need more info to be able to help.