c# - Why does visual studio set the access modifier of a new class to internal -
this question has answer here:
using visual studio create windows form application. there multiple projects contained in solution, each project having multiple folders. when use context menu in solution explorer add/create new class inside of folder, set access modifier internal.
namespace namespace.name { internal class classname { } }
any ideas why default in case?
because default access modifier class, not nested. further documenation on this, please have here.
Comments
Post a Comment