InternalsVisibleTo and VB
I try to use the new attribute InternalsVisibleTo in a .net 2.0 VB project but the internal types of the "friend" assembly are not visible to the client assembly.
The first assemblyInfo file contains :
Imports System.Runtime.CompilerServices
...
<Assembly: InternalsVisibleTo("Client, PublicKeyToken=b8adc5e85fbc953f")>
where Client is the name of the assembly which needs to access the internal types of the first one.
Both assemblies are signed with te same file.
I've downloaded an example of a C# solution which demonstrates how to use this new feature (http://www.idesign.net/idesign/DesktopDefault.aspx?tabindex=5&tabid=8), but the translatation into VB fails : is this feature only supported by C# ? Is it a restriction of the beta 2 realease ? If it's a not implemented feature, will it be available in the final realease ?
Thanks for your help in advance.
Henri-Pierre

