Hi All
The different types of access modifiers are
1. private
2. public
3. internal
4. protected
5. protected internal
Note:
Only public and internal modifiers can allowed in namespace elements. i.e
namespace TestModifier
{
// allowed
public class PublicExample
{
}
//not allowed
private class PrivateExample
{
}
}