C ++到C#static_cast

时间:2013-05-19 15:02:46

标签: c# c++ code-conversion

我试图将项目从C ++转换为C#但在C ++版本中使用以下代码:

std::list<PlayerBase*>& AllPlayers = AutoList<PlayerBase>::GetAllMembers();

AutoList只是一个带有以下内容的头文件

#ifndef AUTOLIST_H
#define AUTOLIST_H
#include <list>

template <class T>
class AutoList
{
public:

    typedef std::list<T*> ObjectList;

private:

    static ObjectList m_Members;

protected:

    AutoList()
    {
        //cast this object to type T* and add it to the list
        m_Members.push_back(static_cast<T*>(this));
    }

    ~AutoList()
    {
        m_Members.remove(static_cast<T*>(this));
    }

public:

    static ObjectList& GetAllMembers(){return m_Members;}
};

template <class T>
std::list<T*> AutoList<T>::m_Members;

#endif

那么如何创建一个可以为我做同样的C#类,即选择类类型的所有对象:PlayerBase?

0 个答案:

没有答案