|
All the problem is in your access modifier for 'i';
It is so called Default - visible only from within file where class is defined and not accessible for others. If you came from VB - this could be the case that you would assume that default access modifier should be Public if you don't give one... But it is not.... Change to Public or Protected and it will work just fine.
|