I\'m building a class library that will have some public & private methods. I want to be able to unit test the private methods (mostly while developing, but also it coul
Declare them internal, and then use the InternalsVisibleToAttribute to allow your unit test assembly to see them.
internal