0

这是工作代码:

    static class Global
    {
        private static Dictionary<string, int> emails_compsIDs;
        private static Dictionary<string, int> set_emails_compsIDs { set { emails_compsIDs = value; } }
        private static DataTable MultiCompReport;

    static Global()
    {
        string e = string.Empty;
        Dictionary<string, int> emails_compsIDs = new Dictionary<string, int>();
        DataTable t = MySql.ExecuteSelect("SELECT Email, Company_ID FROM potencial_contact WHERE Email != '' AND Email IS NOT NULL");

        foreach (DataRow r in t.Rows)
        {
            int comp_id = Convert.ToInt32(r["Company_ID"]);
            e = r["Email"].ToString().Replace("\r", "").Replace("\t", "").Replace("\n", "").Trim().ToLower().Trim();
            if (!string.IsNullOrWhiteSpace(e) && !emails_compsIDs.ContainsKey(e))
            {
                try
                {
                    emails_compsIDs.Add(e, comp_id);
                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }
        }
        if (emails_compsIDs.ContainsKey("linda@andatrade.com"))
            Console.WriteLine("Eureka");
        set_emails_compsIDs = emails_compsIDs;
    }
}

但是,当我只是emails_compsIDs = new Dictionary<string, int>(); 为了在构造函数中初始化字典时,代码只填充了第一行。通过在 ctor 中创建一个实例,然后将结果放入我的静态字典中,它填充了所有行。

4

2 回答 2

3

错误是:

Dictionary<string, int> emails_compsIDs = ...

它声明了一个局部变量而不是分配一个静态字段。它应该只是:

emails_compsIDs = new ...

如果这只占一行,您应该逐步找出原因。

于 2012-12-05T14:20:16.110 回答
0

我遇到了一个类似的问题,我在非静态类中声明了一个静态字典,但在类构造函数中初始化了字典。这导致每次都创建一个新字典。

private static Dictionary<string, Icon> IconDict;

public FileOps()
        {
            IconDict = new Dictionary<string, Icon>();
        }

您需要在声明本身中初始化字典。

private static Dictionary<string, Icon> IconDict = new Dictionary<string, Icon>();
于 2021-06-01T14:21:17.443 回答