i want to input the typecasting to the database to show later, here is my code
private static void Main(string[] args)
{
Console.WriteLine("=====Kurir=====");
Console.WriteLine(" ");
Console.Write("Masukkan Tanggal: ");
int tanggal = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(" ");
Console.WriteLine("===Input Data Barang===");
Console.WriteLine(" ");
Console.Write("Kode Barang: ");
kode = Convert.ToInt32(Console.ReadLine());
}
and here’s my database
thank you in advance
5