1

我有一个似乎无法解决的问题。

我创建了一个名为 test 的类函数,并在函数中声明了一个变量。在下一行,我用一个字符串填充函数。

在调试期间变量没有被声明,我在 VS 中的变量观察器告诉我该变量在当前上下文中不存在。

大家能帮我解决这个问题吗?

这是我的代码:

public void Test()
{
    string DirectoryPath;
    DirectoryPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.InternetCache);
}
4

2 回答 2

14

我的猜测是您使用的是 Release 配置 - 优化器可能已经删除了该变量,因为它除了用于调试之外毫无意义。你给它赋值,但从不读取它。在调试配置中,我希望它没问题(但可能会产生警告)。

编辑:当然,这是假设您Test()看不到变量的方法中。如果Test()已经完成,那么 Likurg 的答案可能更合适。

于 2012-04-13T13:20:54.757 回答
0

如果我没记错的话你想这样做

    public class MyTest
    {
        string DirectoryPath = "";
        public void Test()
        {
            DirectoryPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.InternetCache);
        }
        public void UseString()
        {
            //Use DirectoryPath
        }
    }
于 2012-04-13T13:26:31.257 回答