应用程序没有明显原因停止响应

时间:2013-05-02 17:37:09

标签: c# windows-8 crash

我的骰子滚轮应用程序包含7个文本框(三对'骰子数'和'骰子类型'和奖金一个)和一个按钮。我打算单独阅读每对文本框,如果它不包含有效数字('fate'和'%'因应用原因而被读为数字),则忽略它。

问题是,当我没有在'no。中输入有效数字时。 “骰子”文本框中的应用程序停止响应,并最终返回到加载页面。

请注意,我已经分别测试了每种方法。

这是代码:

namespace DiceRoller
{
public sealed partial class MainPage : DiceRoller.Common.LayoutAwarePage
{
    public MainPage()
    {
        this.InitializeComponent();
    }

    Random r = new Random();

    //regular, untouched basic page code here

    private void btnRoll1_Click(object sender, RoutedEventArgs e)
    {
        //the problem is with the number boxes.
        List<int>[] results = new List<int>[3];
        if (!(ReadInput(textBoxNumber1.Text) == 0 || ReadInput(textBoxType1.Text) == 0))
        {
            results[0] = Roll(ReadInput(textBoxType1.Text), ReadInput(textBoxNumber1.Text));
        }
        if (!(ReadInput(textBoxNumber2.Text) == 0 || ReadInput(textBoxType2.Text) == 0))
        {
            results[1] = Roll(ReadInput(textBoxType2.Text), ReadInput(textBoxNumber2.Text));
        }
        if (!(ReadInput(textBoxNumber3.Text) == 0 || ReadInput(textBoxType3.Text) == 0))
        {
            results[2] = Roll(ReadInput(textBoxType3.Text), ReadInput(textBoxNumber3.Text));
        }
        textBlockOutput1.Text = "Results:" + String.Join(", ",results[0]) + ", " + String.Join(", ", results[1]) + ", " + String.Join(", ", results[2]) + System.Environment.NewLine + "Total:" + ((results[0].Sum() + results[1].Sum() + results[2].Sum() + ReadInput(textBoxBonus.Text)).ToString());
    }

    //METHODS

    private int ReadInput(string input) //tested
    {
        int returnValue = 0;
        if (int.TryParse(input, out returnValue)) ; //the 'out' will make sure that the number has passed
        else if (input == "%") returnValue = 100;
        else if (input.ToLower() == "fate") returnValue = 6;
        else if (input == "") ;
        else textBlockOutput1.Text = "Error: All text boxes should contain a number,       the strings '%', 'Fate'(not case sensitive) or to be blank";
        return returnValue;
    }

    private int Roll(int diceType) //tested
    {
        return r.Next(diceType - 1) + 1;
    }

    private List<int> Roll(int diceType, int diceNumber)//tested
    {
        List<int> results = new List<int>();
        for (int i = 1; i <= diceNumber; i++) results.Add(Roll(diceType));//if one of the no. textboxes is read as '0', this couln't operate
        return results;
    }
}

}

-thanks提前帮助

编辑:我按照评论中的建议使用调试器查看(感谢),错误是'值不能为空'。但有什么价值?它没有提供任何线索。再次感谢。

1 个答案:

答案 0 :(得分:1)

你已经制作了一系列清单

List<int>[] results = new List<int>[3];

你真正想要的是什么 List<int>() results = new List<int>();

然后使用results.Add(Roll());

为此添加值

您需要进行更多调试才能确保最终文本集有3个值

编辑2 这支持理论

enter image description here

修改..

刚刚意识到你有两种滚动方法, 您应该在设置之前初始化为sucn

for(int i = 0; i < 3; i++)
{
results[i] = new List<int>();
}