如何使用 c# 包含类文件

本文关键字:文件 包含类 何使用 | 更新日期: 2023-09-27 18:30:52

好吧,让我先说我不是在Visual Studio中编码。我在工作休息时间这样做,没有那个选择。我正在使用记事本++便携式编码,并使用c#编译器中内置的窗口进行编译。

也就是说,我有这个课很有用.cs

using System;
public class Useful
{   
    public void GetInt()
        {
            string s = Console.ReadLine();
            int i = Convert.ToInt32(s);
            return i;
        }
}

现在我还有一个主项目文件,我们称之为project.cs。如何在该文件中调用有用.cs,以便我可以像int a = Useful.GetInt();一样键入并使其工作?

如何使用 c# 包含类文件

您应该将 GetInt 设置为静态方法。

public static int GetInt()
{
    string s = Console.ReadLine();
    int i = Convert.ToInt32(s);
    return i;
}