At the outer class level, just use 'private'.
Within a class (i.e., methods, fields, and inner classes), just use
'internal'.
e.g.,
private ref class FooOuter
{
internal:
void FooMethod()
{
}
internal:
ref class FooInner
{
};
};

Signature
David Anton
http://www.tangiblesoftwaresolutions.com
Convert between VB, C#, and C++
Instant C#
Instant VB
Instant C++
C++ to C# Converter
C++ to VB Converter
> Hi All,
>
[quoted text clipped - 5 lines]
> Thanks and Regards,
> Subodh