这是代码可以有人告诉我我做错了什么? 我似乎在foreach语句中得到了错误,我在底部的大括号中得到了文件的结尾,即使我添加了一个;它仍然给我错误。
Activity (Label = "Songression")]
public class results : Activity
{ public results
{
protected override void OnCreate (Bundle bundle);
var cbs = this.Intent.Extras.GetBooleanArray("cbs");
var texts = this.Intent.Extras.GetBooleanArray("texts");
foreach (var cb in cbs)
{
System.Diagnostics.Debug.WriteLine (cb);
}
foreach (var text in texts)
{
System.Diagnostics.Debug.WriteLine (text);
}
}
}
}
答案 0 :(得分:1)
在C#中,此声明无效
public results
{
//some code
}
我不知道你从哪里得到的。 每个成员都应该有一个单独的访问级别修饰符。