gpt4 book ai didi

c# - 如何在 C# 中使用 foreach 编写结构数组

转载 作者:行者123 更新时间:2023-11-30 23:16:02 25 4
gpt4 key购买 nike

在这里我不能使用foreach:

`Error CS0030 Cannot convert type 'ConsoleApplication5._3.Struct.Sach' to 'int'

我该如何解决?

public struct Sach
{
public string TenSach;
public string TacGia;
public string GioiThieu;
public int ID;
public void nhapdulieu(string q,string w, string e, int r)
{
TenSach = q;
TacGia = w;
GioiThieu = e;
ID = r;
}
public void Insach()
{
Console.Write($"Ten sach: {TenSach}\n");
Console.Write($"Tac gia: {TacGia}\n");
Console.Write($"Gioi thieu: {GioiThieu}\n");
Console.Write($"Ma sach: {ID}\n");
}
};


public class QuanLySach
{
public static void NhapSach()
{

Sach[] sach1 = new Sach[4];
for(int i=0;i<4;i++)
{
Console.WriteLine("nhap ten sach, tac gia, gioi thieu, id:");
sach1[i].TenSach = Console.ReadLine();
sach1[i].TacGia = Console.ReadLine();
sach1[i].GioiThieu = Console.ReadLine();
var vv = Console.ReadLine();
Int32.TryParse(vv, out sach1[i].ID);
}

foreach(int bb in sach1)
{
// in here i cant use foreach but i dont know why?
}
Console.ReadLine();
}
}
}

最佳答案

您错误地使用了 foreach。 Foreach 循环将遍历序列,您的 bb 应该与该序列的基本类型相同。在您的情况下,它应该是:

foreach(Sach bb in sach1)
{
// in here i cant use foreach but i dont know why?
}

关于c# - 如何在 C# 中使用 foreach 编写结构数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42216760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com