Gets or sets the byte at the specified index in the collection.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public: property unsigned char default[int index] { unsigned char get (int index); void set (int index, unsigned char value); }
Parameters
- index (Int32)
Remarks
Note the use of base.Items[index] rather than base[index].
This is becase base[index] is read-only when the instance has been
instantiated with a default size, whereas the protected Items
property is not read-only.