在控制台应用程序中传递字符串的最简单方法

时间:2011-05-21 23:53:17

标签: c#

我真的很想使用

Class MyClasses
{

    public string mwaAHA = "here";
    //and then use it like this:

    static void testStringhere()
    {

        console.writeline(mwaAHA);

    }
}

我做错了可以有人演示我可以制作一些字符串并在任何空隙中使用它们的主要方法吗?

2 个答案:

答案 0 :(得分:3)

由于testStringhere()是静态的,因此它只能访问驻留在同一范围内的其他静态成员。

要在这种情况下解决您的问题,请使用

public static string mwaAHA = "here";

答案 1 :(得分:1)

上面的答案是正确的,但它应该也有一个私人和一个像以下的东西:

private const string str = "here";