'string'不包含'TryParse'b的定义

时间:2011-12-23 19:19:25

标签: c# .net windows

我试图在文本文件中抓取一个值(在一个名为#Hostname的行下)。当主机名纯粹是一个整数(int.TryParse),这曾经工作,但现在我使用的是一个字符串(string.TryParse)我无法得到它,因为"' string'不包含' TryParse'"的定义还有什么我可以用的吗?

   private void GetGeneralConfig()
    {
        // lets grabs the info from the config!
        var lines = File.ReadAllLines("general_settings.ini");
        var dictionary = lines.Zip(lines.Skip(1), (a, b) => new { Key = a, Value = b })
                              .Where(l => l.Key.StartsWith("#"))
                              .ToDictionary(l => l.Key, l => l.Value);
        // lets define variables and convert the string in the dictionary to int for the sock.connection method!
        string.TryParse(dictionary["#Hostname"], out hostname);

    }

1 个答案:

答案 0 :(得分:8)

它已经是一个字符串,所以你根本不需要解析它:

hostname = dictionary["#Hostname"];