将for循环内的值传递到for循环Windows Phone 7的外部

| 我正在尝试获取for循环内变量a的值。 对于下面的代码,我试图将值输入变量h。 但是a的值变为空。 谁能帮助我将值从for循环中传递出去?
string imageFileName = App.imagePath;

string a;

object b;
sting h;

int i;
string noteSeparate;

private void Library_Loaded(object sender, RoutedEventArgs e)
{


    if (MainListBox.Items.Count == 0)
    {

        //To save the separated note by \'^\'
        string[] noteSeparated;
        //Read the file and display it line by line.
        IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
        //Read the note saved in myFile.txt
        StreamReader readFile = new StreamReader(new IsolatedStorageFileStream(\"ViewFolder\\\\myFile.txt\", FileMode.Open, myStore));

            try
            {

                String fileText = readFile.ReadLine();
                //noteSeparated is the variable that save the retrieve note from myFile.txt and is noteSeparated by \'^\'
                noteSeparated = fileText.Split(new char[] { \'^\' });

                for (i = 0; i < noteSeparated.Length; i = i + 3)
                {
                  noteSeparate = noteSeparated[i];
                  a = noteSeparate;
                }

                h = a;
                readFile.Close();

            }
            catch (Exception)
            {
                noNoteBlock.Visibility = Visibility.Visible;
            }
        }
    
已邀请:
        你应该休息一下;子句在分配= = NoteSeparated [i];之后立即出现。     

要回复问题请先登录注册