检查编译时是否存在引用

问题描述 投票:0回答:2

是否可以在 C# 编译时检查项目中是否存在引用?

例如;

public void myMethod()
{
    #if REVIT_DLL_2014
       TopographySurface.Create(vertices); // This function only exists in Revit2014.dll
       // So I will get a compiler if another DLL is used 
       // ie, Revit2013.dll, because this method (Create) wont exist
    #else // using Revit2013.dll
       // use alternate method to create a surface
    #endif
}

我想要避免的是维护 2 个单独的 C# 项目(即版本 2013 和版本 2014),因为除了 1 个功能之外,它们几乎在所有方面都是相同的。

我想我的最后手段可能是(但如果上述功能是可能的那就更好了):

#define USING_REVIT_2014

public void myMethod()
{
    #if USING_REVIT_2014
       TopographySurface.Create(vertices); // This function only exists in Revit2014.dll
       // So I will get a compiler if another DLL is used because this method (Create) wont exist
    #else // using Revit2013.dll
       // use alternate method to create a surface
    #endif
}
c# reference
2个回答
4
投票

在运行时而不是编译时进行检测。

if (Type.GetType("Full.Name.Space.To.TopographySurface") != null) {
    TopographySurface.Create(vertices);
}
else {
    // use alternate method to create a surface
}

这假设只要定义了

TopographySurface
,那么
Create
就存在。


0
投票

我取决于您使用的是延迟出价还是早期出价。 后期绑定: -没有编译时警告/错误 -仅运行时错误

早期投标: - 编译器错误 -运行时错误

© www.soinside.com 2019 - 2024. All rights reserved.