78

What is C# internal keyword equivalent in VB.NET?

0

3 Answers 3

115

It's Friend. See the MSDN documentation.

0
18

C#'s internal in VB.NET is Friend.

7

Basically Internal and Friend are the same access modifiers in .Net where the Internal keywords is used in C#.Net and Friend is used in VB.Net

Not the answer you're looking for? Browse other questions tagged or ask your own question.