Say your class in project 2 is called MyClass.
Obviously, first reference your project 2 under references in project 1 then
using namespaceOfProject2;
// for the class calling bit:
namespaceOfProject2.MyClass project2Class = new namespaceOfProject2.MyClass();
so whenever you want to reference that class you type project2Class. Plus make sure that class is public too.