C# has an "internal" keyword.
> Is there any way to define a class in such a way that it will allow
> instantiation of the class internal to my project but not allow it when
[quoted text clipped - 3 lines]
> I tried making the constructor protected protected but that did not seem
> to work.
/steveA

Signature
Steve Alpert
my email fgrir.nycreg @ tr.pbz is encrypted with ROT13 (www.rot13.org) and spaces
Bruce - 26 Nov 2006 21:37 GMT
> C# has an "internal" keyword.
> /steveA
Thanks,
I tried again and placing all of the constructors under "private public"
does indeed work. VB's Intellisense allows the new keyword to be used
but throws an error once used.
Bruce