繁体   English   中英

CLR名称空间不存在

[英]CLR namespace does not exist

我有一个带有2个功能的C#项目

namespace LibiqCommonStructures 
{
  public class BlackLevelData : List<BlackLevelLookupTable>
  {
      public BlackLevelData()
      {
      }

       public BlackLevelData(BlackLevelData original)
          : base(original.DeepCopy())
      {
      }

       public void AddLookupTable(double gain, double exposure, double[] levels)
      {
          var table = new BlackLevelLookupTable
          {
              AnalogGain = gain,
              ExposureTime = exposure,
             ChannelLevels = levels
          };

          Add(table);
      }
  }
}

对于SaturationLevelData相同

我创建了一个c ++ \\ CLI项目,我想将两个类作为参数提供给函数

#pragma once
#include "Preprocessor.h"


using namespace LibiqCommonStructures;

namespace ToolBox {

    public ref class PreprocessorWrapper
    {
    public:        
        PreprocessorWrapper();        
        void Function1(BlackLevelData^ blackLevelData, SaturationLevelData^ saturationLevelData);
    private:
        Preprocessor* _preprocessor;
    };
}

标头

 #include "PreprocessorWrapper.h"


void ToolBox::PreprocessorWrapper::Function1(BlackLevelData^ blackLevelData, SaturationLevelData^ saturationLevelData)
{    
    _preprocessor->Function1();
}

ToolBox::PreprocessorWrapper::PreprocessorWrapper()
{
    _preprocessor = new Preprocessor();
}

这是我得到的错误

Error   2   error C2871: 'LibiqCommonStructures' : a namespace with this name does not exist    g:\iqtool2\src\libiqtool\preprocessor_interop\PreprocessorWrapper.h 5   1   Preprocessor_interop
Error   8   error C2448: 'ToolBox::PreprocessorWrapper::Function1' : function-style initializer appears to be a function definition G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp   5   1   Preprocessor_interop
Error   6   error C2065: 'SaturationLevelData' : undeclared identifier  G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp   4   1   Preprocessor_interop
Error   7   error C2065: 'saturationLevelData' : undeclared identifier  G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp   4   1   Preprocessor_interop
Error   4   error C2065: 'BlackLevelData' : undeclared identifier   G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp   4   1   Preprocessor_interop
Error   5   error C2065: 'blackLevelData' : undeclared identifier   G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp   4   1   Preprocessor_interop
Error   3   error C2061: syntax error : identifier 'BlackLevelData' g:\iqtool2\src\libiqtool\preprocessor_interop\PreprocessorWrapper.h 13  1   Preprocessor_interop

你能看到我在这里做错了吗?

是的,我已经添加了C#项目作为参考 在此处输入图片说明

首先,请确保使用/ clr开关构建C ++项目。 奇怪的是,您至少没有引用系统程序集。

其次,您提供的屏幕快照似乎表明您的C ++ / CLI项目正在使用.NET Framework v4.0。 假设您的C#项目正在使用.NET Framework v4.5,请尝试更新您的C ++ / CLI项目以使其匹配。 您可以按如下方式手动编辑项目文件(.vcxproj):

<PropertyGroup Label="Globals">
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>

我通过将Visual Studio 2013版本更改为v4.0来重现您的问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM