J
Jeff Lindholm
Is there a way to allow C++ friend level access in a VB.NET object.
Simple C++ example.............
class Foo
{
friend class Bar;
private int a;
...
};
class Bar
{
private int b;
Bar(Foo f)
{
b = f.a; // accessing private data in Foo
}
...
};
Simple C++ example.............
class Foo
{
friend class Bar;
private int a;
...
};
class Bar
{
private int b;
Bar(Foo f)
{
b = f.a; // accessing private data in Foo
}
...
};