[]
A typed version of ComArrayBase
public class ComArray<T> : ComArrayBase, IDisposable, IEnumerable<T>, IEnumerable where T : ComObject
T
Type of the ComObject
Initializes a new instance of the ComArray<T> class.
public ComArray(params T[] array)
array
T[]The array.
Initializes a new instance of the ComArray<T> class.
public ComArray(int size)
size
intThe size.
Gets or sets the T with the specified i.
public T this[int i] { get; set; }
i
int