Now,externally of my assembly i want to see BB class, but not the AA class. How can i do?Riccardo
Riccardo63 Monday, October 13, 2008 4:58 PM
The keyword that specifies the assembly level is "Friend" (Friend MustInherit Class AA). However, you cannot use it here because it will result in the following compile-time error:
As a workaround, instead of declaring the entire AA class Friend, you might consider whether declaring the relevant methods in AA to be "Friend" will meet your needs.
Edited byBinaryCoderMonday, October 13, 2008 11:27 PM
Marked As Answer byRiccardo63Tuesday, October 14, 2008 6:50 AM
BinaryCoder Monday, October 13, 2008 11:26 PM
The keyword that specifies the assembly level is "Friend" (Friend MustInherit Class AA). However, you cannot use it here because it will result in the following compile-time error:
As a workaround, instead of declaring the entire AA class Friend, you might consider whether declaring the relevant methods in AA to be "Friend" will meet your needs.
Edited byBinaryCoderMonday, October 13, 2008 11:27 PM
Marked As Answer byRiccardo63Tuesday, October 14, 2008 6:50 AM
BinaryCoder Monday, October 13, 2008 11:26 PM
Ok Binarycoder. This meet my needs.
However, I've another question: is it right to see externally my abstract classes? (With intellisense for example). What is the best practice in this case? thanks.