IndexOutOfRangeException în c#

Exemple de cod

2
0

IndexOutOfRangeException în c#

    int[] test = new int[3];
    void Start()
    {
        test[1] = 5;
        test[2] = 12;
        test[3] = 7;/*this wil cause an errror
        becase it has an size of 3, but the
        array index starts with [0], so you
        have to write test[0],test[1] and
        test[2]*/
    }

Pagini similare

Pagini similare cu exemple

În alte limbi

Această pagină este în alte limbi

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................