private
Login to rate this answer.
class A
{
// ...
}
is equivalent to
internal class A
{
// ...
}

2 Users have rated as useful.
Login to rate this answer.
internal

1 User has rated as useful.
Login to rate this answer.
by default access specifier of class is internal

1 User has rated as useful.
Login to rate this answer.
Access Specifier for a Top Level Class is: Internal bcuz scope of tha class is limited within a application.
Login to rate this answer.
Internal, but class scope only with in application do not access another application this class.
Login to rate this answer.
The default access specifier for a top level class is internal and private for a nested class. Internal classes can be accessed within the same assembly.

3 Users have rated as useful.
Login to rate this answer.
class A{ class B { .......... }}is equalent tointernal class A{ private class B { ......... }}
Login to rate this answer.
internal
Login to rate this answer.
Things declared outside of a class or struct will default to internal. Things declared inside of a class or struct will default to private.
Login to rate this answer.
wincy
Answered On : Sep 5th, 2011
It is internal.
Login to rate this answer.
zebediah
Answered On : Sep 7th, 2011
Internal
Login to rate this answer.