1

一切在本地运行良好,但我收到“检测到无法访问的代码”错误。

这是那段代码:

private string GetRedirectUriForCurrentConfiguration()
{
    #if (DEBUG || DebugDev)
        return "http://localhost:1855/";
    #endif
    return "http://172.16.40.39:1855";
}

我在第 4 行收到“无法访问”消息,位于return "http://172.16.40.39:1855";

此语句设置正确吗?

4

1 回答 1

9

只需在#else您的代码中添加一个预处理器指令:

private string GetRedirectUriForCurrentConfiguration() {

#if (DEBUG || DebugDev)
    return "http://localhost:1855/";
#else
    return "http://172.16.40.39:1855";
#endif  
}
于 2016-03-31T21:48:19.253 回答