ahoj, mám tenhle problém(kód),a vúbec nevím proč to nejde, když je to stejný typ(int)
string h;
string b;
int d;
int bin;
int[] pole = new int[8];
Console.WriteLine("Zadej číslo: ");
h = Console.ReadLine();
b = Convert.ToString(Convert.ToInt32(h, 16), 2);
d = Convert.ToInt32(h, 16);
if (!(d < 4096))
{
}
else
{
bin = int.Parse(b);
Console.WriteLine(bin);
bin[0] = pole[0];//tohle předkladč nepřeloží, proč?
}
chyba: cannot apply indexing with [] to an expression of type 'int' - nelze použít indexování pomocí [] na výraz typu 'int'. Ale já tom mám v intu. Nebo bych to měl hodit do stringu, což hází 2 chyby. Díky