3

我正在尝试为 Windows Phone 的 Sync Framework 4.0 编译示例代码,但是我在几个文件中遇到了错误。这些文件之一是:

#if SERVER
namespace Microsoft.Synchronization.Services
#elif CLIENT
namespace Microsoft.Synchronization.ClientServices
#endif
{
    /// <summary>
    /// Represents the base interface that all offline cacheable object should derive from.
    /// </summary>
    public interface IOfflineEntity
    {
        /// <summary>
        /// Represents the sync and OData metadata used for the entity
        /// </summary>
        OfflineEntityMetadata ServiceMetadata { get; set; }
    }
}

有两个错误:

  • 命名空间不能直接包含字段或方法等成员——对于第一个括号
  • 最后一个括号的类型或命名空间定义,或预期的文件结尾

我已经通过谷歌搜索了这两个错误,并且我找到了很多此类错误的答案 - 但是这些都不能应用于我的案例(afaik 没有缺少括号)。

4

2 回答 2

4

您收到此错误是因为您既没有定义 SERVER 也没有定义 CLIENT条件符号。在预处理阶段消除#if ... #endif指令中的文本后,编译器只看到以下代码:

{
    /// <summary>
    /// Represents the base interface that all offline cacheable object should derive from.
    /// </summary>
    public interface IOfflineEntity
    {
        /// <summary>
        /// Represents the sync and OData metadata used for the entity
        /// </summary>
        OfflineEntityMetadata ServiceMetadata { get; set; }
    }
}

这不是有效的 C# 代码(因为在打开大括号之前缺少“命名空间 xyz”)。

在 Visual Studio 中,转到项目属性并在Build页面上将条件编译符号设置为 SERVER 或 CLIENT(名称区分大小写)。

于 2012-05-21T02:13:49.367 回答
0

我收到此错误是因为我的 .TT 文件中有 UNIX 样式的换行符,大概是因为换行符是由 git 转换的。将 .tt 文件复制到文本编辑器中,将其保存为 PC 格式,然后复制回 Visual Studio 为我解决了这个问题。

于 2013-01-13T16:18:57.160 回答