如何让我的sphereGUI.cs使用MyMath.cs?
以下是在sphereGUI.cs表单if (TriMath.IsNumeric(textBox1.Text) == true)
上编写的代码行
以下是错误消息:错误当前上下文中不存在名称“TriMath”C:\ Workspace \ Cisc-2330-Labs \ Lab6 \ Lab6 \ sphereGUI.cs 24 11 Lab6
答案 0 :(得分:0)
确保它们处于相同的Namespace
对于Form1.cs,它应该是
namespace Lab6
{
class Form1:Form
{
//....
}
}
对于MyMath.cs
namespace Lab6
{
class MyMath
{
//....
}
}
答案 1 :(得分:0)
嘿,看看这个陈述,
if (TriMath.IsNumeric(textBox1.Text) == true
根据快照您的班级名称为MyMath
,您使用的是TriMath
?
确保命名空间正确
确保所需的引用已添加到标题部分(例如使用...)
答案 2 :(得分:0)
确保包含一个using语句,该语句从其名称空间中获取该类。