Closed. This question is not reproducible or was caused by typos。它当前不接受答案。
想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
6年前关闭。
Improve this question
构造函数的“公共(public)”部分用红色下划线标出,并说“一个新表达式需要(),[]或{}”,但我后面显然带有()。
有解决方案吗?
与
想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
6年前关闭。
Improve this question
public class ScreenManager
{
#region Variables
private static List<BaseScreen> Screens = new List<BaseScreen>();
private static List<BaseScreen> NewScreens = new List<BaseScreen>
#endregion
public ScreenManager()
{
}
}
构造函数的“公共(public)”部分用红色下划线标出,并说“一个新表达式需要(),[]或{}”,但我后面显然带有()。
有解决方案吗?
最佳答案
基本语法错误。更换:
private static List<BaseScreen> NewScreens = new List<BaseScreen>
与
private static List<BaseScreen> NewScreens = new List<BaseScreen>();
10-08 16:01