public static bool IsAwesome {get {return true; }}
public static bool IsAwesome { get { return true; } }
我的问题是:为什么第二个工作而第一个不工作?我使用了头语法
< ! - 语言:c# - >
对于两者(注意:我故意在<和!之间留下一个空格,否则它将不会显示;但原始代码中没有空格)。这很奇怪。谢谢你的帮助。
顺便说一下,我收到了代码 https://stackoverflow.com/editing-help#syntax-highlighting
答案 0 :(得分:0)
代码需要缩进4个字符,在第一个示例之前只插入2个。
public static bool IsAwesome { get { return true; } }
public static bool IsAwesome { get { return true; } }