这可能吗?在 C# 中调用托管 c++ 结构构造函数



>我有一个托管的 c++ 类/结构,其中包含接受输入的构造函数。在 C# 中,我只能"看到"默认构造函数。有没有办法在不离开托管代码的情况下调用其他构造函数?谢谢。

编辑:事实上,它的所有功能都不可见。

C++:

public class Vector4
{
private:
    Vector4_CPP test ;
    Vector4(Vector4_CPP* value)
    {
        this->test = *value;
    }

public:
    Vector4(Vector4* value)
    {
        test = value->test;
    }
public:
    Vector4(float x, float y, float z, float w)
    {
        test = Vector4_CPP( x, y, z, w ) ;
    }

    Vector4 operator *(Vector4 * b)
    {
        Vector4_CPP r = this->test * &(b->test) ;
        return Vector4( &r ) ;
    }
} ;

C#:

// C# tells me it can't find the constructor.
// Also, none of them are visible in intellisense.
Library.Vector4 a = new Library.Vector4(1, 1, 1, 1);

第一个问题是类声明是针对非托管C++对象的。

如果需要托管 C++/CLI 对象,则需要以下项之一:

public value struct Vector4

public ref class Vector4

此外,任何包含本机类型的 C++/CLI 函数签名对 C# 都不可见。因此,任何参数或返回值都必须是 C++/CLI 托管类型或 .NET 类型。 我不确定运算符*签名的外观,但您可以像这样休息:

public value struct Vector4 
{   
  private:
    Vector4_CPP test;
    Vector4(Vector4_CPP* value)
    {
        this->test = *value;
    }
  public:
    Vector4(Vector4 value)
    {
        test = value.test;
    }
    Vector4(System::Single x, System::Single y, System::Single z, System::Single w)
    {
        test = Vector4_CPP( x, y, z, w ) ;
    } 
}

或:

public ref class Vector4 
{   
  private:
    Vector4_CPP test;
    Vector4(Vector4_CPP* value)
    {
        this->test = *value;
    }
  public:
    Vector4(Vector4^ value)
    {
        test = value->test;
    }
    Vector4(System::Single x, System::Single y, System::Single z, System::Single w)
    {
        test = Vector4_CPP( x, y, z, w ) ;
    } 
}

相关内容

  • 没有找到相关文章

最新更新