As the Title says, I've got a multi-project solution.
I've got a "core" project that is loaded with most of the other projects.
So my question is this, I have a few utility functions such as FormatPhoneNumber(..) that I would like to be able to access in the following manner from anywhere.
(in Project_B which depends on Core) string str = FormatPhoneNumber(inputString);
At worst, I suppose I could live with a qualifier of some sort: string str = util.FormatPhoneNumber(inputString);
I come from a non-ASP.NET VB-single-project world, so I apologize for the lame question :)