回 帖 发 新 帖 刷新版面

主题:[讨论]求助, 我想读取注册表中多个键值;应该如何操作??

我想读取注册表中多个键值;应该如何操作??
private string GetRegistData(string IntCode)
        {
            string c;
            RegistryKey dave = Registry.LocalMachine;
            RegistryKey softwareKey = dave.OpenSubKey("SOFTWARE", true);
           
            RegistryKey choseKey = softwareKey.OpenSubKey("SOW", true);
            RegistryKey ValueKey = choseKey.OpenSubKey("Regexample", true);
            c = ValueKey.GetValue(IntCode).ToString();
        }
但执行后提示:并非所有代码都反回值.

而且上面只能读一个值, 我想是要读 Regexample,下的4个值.. 请问该如何写这个代码?

回复列表 (共1个回复)

沙发

你没有return c啊

我来回复

您尚未登录,请登录后再回复。点此登录或注册