C
Chris
Hi,
the specs for System.Array are :
MustInherit Public Class Array
Implements ICloneable, IList, ICollection, IEnumerable
but I can't use any of the functions presented by IList in my code
Dim numbers As System.Array
numbers.Add(1) --> NOT POSSIBLE Compiler error : 'System.Array'
does not contain a definition for 'Add'
nor some belonging to ICollection : SyncRoot:yes, Count:no
numbers.Count --> NOT POSSIBLE
IEnumerable : no problem
What is reasoning behind all this ?
Already does intelisense not show those functions. But why not ? if the
specs make you suppose you could use them.
Thanks in advance
Chris
the specs for System.Array are :
MustInherit Public Class Array
Implements ICloneable, IList, ICollection, IEnumerable
but I can't use any of the functions presented by IList in my code
Dim numbers As System.Array
numbers.Add(1) --> NOT POSSIBLE Compiler error : 'System.Array'
does not contain a definition for 'Add'
nor some belonging to ICollection : SyncRoot:yes, Count:no
numbers.Count --> NOT POSSIBLE
IEnumerable : no problem
What is reasoning behind all this ?
Already does intelisense not show those functions. But why not ? if the
specs make you suppose you could use them.
Thanks in advance
Chris