As Title says, I have a multi-project solution.
I have a βcoreβ project that is loaded by most other projects.
So my question is that I have some useful features, such as FormatPhoneNumber (..), with which I would like to access as follows from anywhere.
(in Project_B, which depends on Core)
string str = FormatPhoneNumber(inputString);
In the worst case, I suppose I could live with a specific classifier:
string str = util.FormatPhoneNumber(inputString);
source
share