Home All Groups Group Topic Archive Search About

VB equivilent of "internal" in C#?

Author
15 Apr 2006 6:19 PM
Brian Henry
Is there a .NET equivilent of the "internal" keyword in VB.NET? say if i had
this in C#

internal bool b_MyBoolean;

Author
15 Apr 2006 6:57 PM
Herfried K. Wagner [MVP]
"Brian Henry" <nospam@nospam.com> schrieb:
> Is there a .NET equivilent of the "internal" keyword in VB.NET? say if i
> had this in C#
>
> internal bool b_MyBoolean;

'Friend'.

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
15 Apr 2006 10:36 PM
Brian Henry
*hits head* thanks! should of thought of that...


Show quoteHide quote
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:eFKmc5LYGHA.3448@TK2MSFTNGP04.phx.gbl...
> "Brian Henry" <nospam@nospam.com> schrieb:
>> Is there a .NET equivilent of the "internal" keyword in VB.NET? say if i
>> had this in C#
>>
>> internal bool b_MyBoolean;
>
> 'Friend'.
>
> --
> M S   Herfried K. Wagner
> M V P  <URL:http://dotnet.mvps.org/>
> V B   <URL:http://classicvb.org/petition/>