You declare aRadioas a local variable in your constructor. You need to declare it as an instance variable and just assign it a value inside your constructor:
private readonly string[] aRadio;
public Form1()
{
InitializeComponent();
string strRadio = Utils.ReadFile(strTemp + @"\rstations.txt");
aRadio = strRadio.Split(new string[] { "#" },
StringSplitOptions.RemoveEmptyEntries);
for (int i = 0; i < aRadio.Length; i += 2)
{
listBox.Items.Add(aRadio[i]);
}
}
, , , ( KeyValuePair<string, string>) . , , ... , .