C ++ / CLI中C#的静态类/方法的等价物

时间:2014-08-13 08:04:27

标签: c# c++-cli

我想在下面的C#代码上创建C ++ / CLI包装器。

public static class Helper
{
  public static int? GetCodes(string input)
  {
    // Implementation of the logic.....
    return 1;
  }
}

1 个答案:

答案 0 :(得分:13)

public ref class Helper abstract sealed
{
public:
    static System::Nullable<int> GetCodes(System::String^ input) { /* impl logic */ }
};