What is C# 'internal' in VB.net?
What is C# internal
keyword equivalent in VB.NET?
Solution 1:
It's Friend
. See the MSDN documentation.
Solution 2:
C#'s internal
in VB.NET is Friend
.
Solution 3:
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