show/hide this revision's text 2 fixed spelling

Hey I usually run into a situation where I will create a class that should only be instanciated instantiated by one or a few classes. In this case I would make its constructor private and make it a friend class to the objects that should be able to instanciate instantiate it. For example (in C++):

class CFoo
{
    // private ctor because only a select few classes should instanciate
    instantiate
    private:
    CFoo()
    {
        ... Do stuff
    }
}

class CBar
{
    // CBar is one of the few classes that only need to use CFoo
    friend class CFoo;
    CFoo *m_pFoo;

    CBar()
    {
        m_pFoo = new CFoo;
    }
}

So my question is: Is this stupid? Or is there a better way to achieve this? I'm especially interested in a way where it would work with C# considering the langauge language lacks the friend keyword completely. Thanks.

show/hide this revision's text 1

Object Oriented Design help from C++ to C#

Hey I usually run into a situation where I will create a class that should only be instanciated by one or a few classes. In this case I would make its constructor private and make it a friend class to the objects that should be able to instanciate it. For example (in C++):

class CFoo
{
    // private ctor because only a select few classes should instanciate
    private:
    CFoo()
    {
        ... Do stuff
    }
}

class CBar
{
    // CBar is one of the few classes that only need to use CFoo
    friend class CFoo;
    CFoo *m_pFoo;

    CBar()
    {
        m_pFoo = new CFoo;
    }
}

So my question is: Is this stupid? Or is there a better way to achieve this? I'm especially interested in a way where it would work with C# considering the langauge lacks the friend keyword completely. Thanks.