小编jam*_*uso的帖子

数组读数问题c#

我得到这个代码来存储一些特定数组的数字,但IDE显示这个错误"使用未分配的局部变量'ascchar'".

    private void strtoasc()
    {
        int[] ascchar;
        int i = 0;
        foreach (char stg in tbox_string.Text)
        {
            ascchar[i] = Convert.ToInt32(stg);
            i++;
        }
    }
Run Code Online (Sandbox Code Playgroud)

c# forms windows arrays

1
推荐指数
1
解决办法
44
查看次数

标签 统计

arrays ×1

c# ×1

forms ×1

windows ×1