Inside a class by default everything is private. By default non nested class ,interface, struct, delegate & enum have internal accessibility. But that means if all these comes inside class, everything will become private by default. Are there any types that will become non private inside a class by default?
PS. just a kind of exceptional case like an instance variable that we can't assign any values inside a struct, but by using null coalescing operator we can assign.