0

我有以下评论。

    /// <summary>
    /// MSDN Time Format compatible with <see cref="DateTime.ParseExact(string, string, IFormatProvider)"/> 
    /// </summary>
    /// <returns>MSDN Time Format compatible with <see cref="DateTime.ParseExact(string, string, IFormatProvider)"/></returns>

但我不确定为什么会收到以下警告

“MSLab.DateTime.SystemTimeProvider.GetTimeFormat()”上的警告 7 XML 注释具有无法解析的 cref 属性“DateTime.ParseExact(string, string, IFormatProvider)” F:\My Documents\Visual Studio 2010\Projects\MSLab\主干\MSLab\MSLab\DateTime\SystemTimeProvider.cs 110 57 MSLab

4

1 回答 1

1

根据警告消息,您的类似乎SystemTimeProvider位于名为 的命名空间内,该命名空间与 .NET类型DateTime同名。DateTime要解决此冲突,请将您的更改cref"System.DateTime.ParseExact(string, string, IFormatProvider)"

/// <summary>
/// MSDN Time Format compatible with <see cref="System.DateTime.ParseExact(string, string, IFormatProvider)"/>
/// </summary>
/// <returns>MSDN Time Format compatible with <see cref="System.DateTime.ParseExact(string, string, IFormatProvider)"/></returns>
于 2012-08-31T03:36:47.033 回答