C#中的internal和private访问修饰符之间有什么区别?
internal
private
内部 用于程序集作用域(即只能从同一.exe或.dll中的代码访问)
private 用于类范围(即只能从同一类中的代码访问)。