如何从方法C#获取字符串值

时间:2015-03-05 07:56:50

标签: c# methods

所以我试图创建一个方法,其中会有一个字符串值,然后我想从main方法中获取该值

public string test(string stringVar)
    {
        stringVar = "Hello world";
        string anotherVar = stringVar;
        return anotherVar;
    }

例如,在此代码中,如何在main方法中识别变量'anotherVar'?

感谢。

2 个答案:

答案 0 :(得分:3)

如果我已经正确地理解了你想要的东西,那么在你的主要地方,你只需要调用该方法。例如:

string desiredResult=test("someString");

desiredResult将存储返回的值。

答案 1 :(得分:0)

在控制台应用中,你的主要是

static void Main(string[] args)

所以你必须创建一个静态函数

public static string test(string stringVar)