I guess you set the item array in the inspector? In this case you shouldn't create the array yourself.
this line will recreate the whole array and deletes the old one:
items = new ItemInfo[26];
Furthermore all items in this new array will be null.
Unity creates the array and the containing classes for you when you edit the array in the inspector.
Just remove the line above and it should work ;)