好的,让我先说一下我在视觉工作室不编码。我在工作的停工期间这样做,并没有那个选择。我在Notepad ++中编码可移植,并使用c#编译器内置的窗口进行编译。
那就是说,我在use.cs中有这个类
using System;
public class Useful
{
public void GetInt()
{
string s = Console.ReadLine();
int i = Convert.ToInt32(s);
return i;
}
}
现在我还有一个主项目文件,让我们称之为project.cs。如何在该文件中调用useful.cs,以便我可以像int a = Useful.GetInt();
一样输入并使其有效?
答案 0 :(得分:2)
您应该将GetInt设置为静态方法。
public static int GetInt()
{
string s = Console.ReadLine();
int i = Convert.ToInt32(s);
return i;
}