我想记录枚举类型字段的默认值:
/// <summary>
/// The default value is <see cref="Orientation.Horizontal" />.
/// </summary>
public Orientation BoxOrientation;
编译器警告它无法解析引用。前缀 F: 或 M: 会使编译器静音,但 E: 也可以,所以我不确定哪个前缀是正确的。
我想记录枚举类型字段的默认值:
/// <summary>
/// The default value is <see cref="Orientation.Horizontal" />.
/// </summary>
public Orientation BoxOrientation;
编译器警告它无法解析引用。前缀 F: 或 M: 会使编译器静音,但 E: 也可以,所以我不确定哪个前缀是正确的。