繁体   English   中英

C#我正在使用字符串数组,我希望使用“ foreach”显示它们的列表

[英]C# I'm using string arrays, and I was hoping to use a “foreach” to Display a list of them

我相信除了foreach语句外,我的大部分代码在大多数情况下都是正确的。 但是由于程序未编译,我无法对其进行测试。 我将不胜感激,即使我的结构需要进行一些更改,我也将不胜感激。

private static void PickScreen(Human myHuman)
    {
        var tries = 3;
        bool answer = false;
        string choice= "";

        string[] choices = new string[6];


        choices[0] = "Name";
        choices[1] = "Age";
        choices[2] = "Scar Type";
        choices[3] = "Weapon";
        choices[4] = "Hero Status";
        choices[5] = "Potions";

        DisplayNewScreenHeader();

        Console.WriteLine(" What screen would you like to go to?");
        Console.WriteLine();


        foreach (string i in choices)
        {
            Console.WriteLine(" Screen Choice: {0}", choices[]);

        }
        Console.WriteLine();
        Console.WriteLine(" Or you can type in " + "\"Default\"" + "to not have to do any of the query screens and have your character have default settings.");

        while(tries > 0)
        {
             Console.WriteLine(" Choice: ");
             choice = Console.ReadLine();

              if (choice.Equals("name", StringComparison.OrdinalIgnoreCase))
                 {
                        DisplayGetHeroName(myHuman);
                    answer = true;
                 }
              else if (choice.Trim().Equals("age", StringComparison.OrdinalIgnoreCase))
                 {
                        DisplayGetUsersAge(myHuman);
                    answer = true;
                 }
              else if (choice.Trim().Equals("Scar Type", StringComparison.OrdinalIgnoreCase))
                {
                        DisplayGetScar(myHuman);
                 answer = true;
             }
             else if (choice.Trim().Equals("weapon", StringComparison.OrdinalIgnoreCase))
             {
                        DisplayGetWeapon(myHuman);
                 answer = true;
             }
              else if (choice.Trim().Equals("Hero Status", StringComparison.OrdinalIgnoreCase))
             {
                        DisplayGetHeroStatus(myHuman);
                    answer = true;
             }
             else if (choice.Trim().Equals("Potions", StringComparison.OrdinalIgnoreCase))
             {
                        DisplayAddBackpackItems(myHuman);
                    answer = true;
             }
              else if (choice.Trim().Equals("Default", StringComparison.OrdinalIgnoreCase))
              {
                  Console.WriteLine(" Looks like you went with the lazy way.  Anyways go conquer basements, and become ruler of stuff!");
              }
             else 
             {
                 Console.WriteLine(" Dog gone it, yer Missed up a bit tad.");
                 Console.WriteLine();
                 Console.WriteLine(" Try again");
                 tries -= 1;
             }

        }

       if (answer == false)
         {
           DisplayNewScreenHeader();

           Console.WriteLine(" Since you're incompetent you no longer have the option to pick your query screens. They will simply go in order now.");
           DisplayGetHeroName(myHuman);
           DisplayGetUsersAge(myHuman);
           DisplayGetScar(myHuman);
           DisplayGetWeapon(myHuman);
           DisplayGetHeroStatus(myHuman);
           DisplayAddBackpackItems(myHuman);

           DisplayReturnPrompt();
         }


    }

foreach循环中,随着循环的继续,您的变量(在本例中为i )被设置为枚举中的每个值。 您需要更改:

foreach (string i in choices)
        {
            Console.WriteLine(" Screen Choice: {0}", choices[]);

        }

至:

foreach (string i in choices)
        {
            Console.WriteLine(" Screen Choice: {0}", i);

        }

您的foreach循环应如下所示,因为i实际上是choices项之一

foreach (string i in choices)
    {
        Console.WriteLine(" Screen Choice: {0}", i);

    }

至于foreach遍历您的数组, i将有值:

choices[1]
choices[2]
choices[3]
.......
etc

更改

Console.WriteLine(“屏幕选择:{0}”,options []);

Console.WriteLine(“屏幕选择:{0}”,i);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM