Using visual studio to create a windows form application. There are multiple projects contained in this solution, with each project having multiple folders. When i use the context menu in the solution explorer to add/create a new class inside of a folder, it set the access modifier to internal.
namespace Namespace.Name
{
internal class ClassName
{
}
}
Any ideas why this is the default in this case?