gpt4 book ai didi

c# - MonoDevelop 上的命名空间错误

转载 作者:行者123 更新时间:2023-12-02 10:47:12 25 4
gpt4 key购买 nike

我一直收到以下错误。
1:命名空间“System”中不存在类型或命名空间名称“CountDownTime”(您是否缺少程序集引用)
2:命名空间 Andriod.OS 中不存在类型或命名空间 naem 'Runtime'(您是否缺少程序集引用)

我希望代码生成 10 个减法问题,给出答案,然后给出测试所花费的时间。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.CountDownTimer;

using Android.App;
using Android.Content;
using Android.OS.Runtime;
using Android.Runtime;
using Android.Util;
using Android.Views;
using Android.Widget;
using Android;

namespace Jagtutor
{
public class Subtraction : View
{
public Subtraction (Context context, IAttributeSet attrs) :
base (context, attrs)
{
Initialize ();
}

public Subtraction (Context context, IAttributeSet attrs, int defStyle) :
base (context, attrs, defStyle)
{
Initialize ();
}

private void Initialize ()
{
int correctCount;
int count = 0;
long startTime = CountDownTimer(0);

while (count < 10)
{
// Generate two random single-digit numbers
srand(CountDownTimer(0));
int number1 = Random() % 10;
int number2 = Random() % 10;

// if number1 < number, swap number1 with number2
if (number1 < number2)
{
int temp = number1;
number1 = number2;
number2 = temp;

// PROMPT THE STUDENT TO ANSWER " WHAT IS NUMBERE1 - NUMBER2?"
Console.WriteLine("WHAT IS ")(number1);" - "(number2)("?");

// Grade the answer and display the result
if (number1 - number2 == answer){
Console.Write("You are correct!");
correctCount++;
}
else
Console.WriteLine("Your answer is wrong");
Console.WriteLine(number1);"-"(number2); " should be" (number1 - number2);

// increase the count
count++;
}
long endTime = CountDownTimer(0);
long testTime = endTime - startTime;

Console.Write(" Correct count is ")(correctCount);" Test time is" (testTime)("seconds");
return 0;
}

}
}

}

最佳答案

C# using directive用于命名空间,而不是类型。没有System.CountDownTimer命名空间,因此出现错误。

就此而言,没有 System.CountDownTimer输入;它是 Android.OS.CountDownTimer ,所以你需要:

using Android.OS;

同样,也没有 Android.OS.Runtime命名空间,所以 using Android.OS.Runtime;也会产生编译时错误;去掉它。

关于c# - MonoDevelop 上的命名空间错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10288662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com