You can use any .NET assembly in any .NET application. You just need to reference the assembly from the consuming code.
This of course assumes that there are some useful classes in the assembly you wish to reuse. If you have an assembly that contains only ASP.NET page classes, they wouldn't be very useful in a console application.
-
Peter