gpt4 book ai didi

c# - "an object reference is required for the non-static field, method, or property ' Random.Next(int, int)' 是什么意思?

转载 作者:太空宇宙 更新时间:2023-11-03 19:56:14 25 4
gpt4 key购买 nike

<分区>

我遇到的问题是 Visual Studio 在代码“Random.Next(1,10);”下抛出错误。上面写着:

"an object reference is required for the non-static field, method, or property 'Random.Next(int, int)' "

因此,我查看了其他具有类似短语的问题的答案。在 Stack Overflow 上的这些示例中,大多数建议都说有人需要简单地将方法或类设为静态。我在这段代码中尝试了所有组合,但没有修复 Visual Studio 中的错误。

感谢任何帮助,谢谢。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace Data_Collector_Course_Assignment
{
public class Device
{
// Returns a randoom integer between 1 and 10 as a measurement of an
imaginary object

public int GetMeasurement()
{
int randomInt = Random.Next(1,10);
return randomInt;
}
}
}

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