Private methods are private and thus not public. That's the idea of a private method.
But like Ankur suggests, a method with the 'Friend' ('internal' in C#) modifier might work for you. This allows other classes within the same assembly to see the method. However, the method is not publicly accessible from *outside* the assembly.
-
Peter