for (int f = 1; f <= n.Length; f++)
            {
                string SoftPath = "J:\\soft\\au3\\" + n[f].ToString();
                SoftInfo SIC = new SoftInfo();
                SIC.Name = "SIC" + f.ToString();
                panel.Controls.Add(SIC);
                SIC.Location = new Point(0, l);
                l = l + 39;
            }
怎么在另一个cs文件里得到这个 string SoftPath 的值啊???