3using System.Collections.Generic;
6using System.Threading.Tasks;
16 List<ValueDescriptor> m_rgValues =
new List<ValueDescriptor>();
33 m_rgValues.Add(
new descriptors.ValueDescriptor(v));
42 get {
return m_rgValues.Count; }
52 get {
return m_rgValues[nIdx]; }
73 if (v.
Name == strName)
86 return m_rgValues.GetEnumerator();
93 IEnumerator IEnumerable.GetEnumerator()
95 return m_rgValues.GetEnumerator();
string Name
Get/set the name of the item.
The ValueDescriptorCollection class contains a list of ValueDescriptor's.
ValueDescriptorCollection(ValueDescriptorCollection rg)
The ValueDescriptorCollection constructor.
ValueDescriptor Find(string strName)
Searches for a parameter by name in the collection.
void Add(ValueDescriptor p)
Adds a ValueDescriptor to the collection.
int Count
Returns the count of items in the collection.
IEnumerator< ValueDescriptor > GetEnumerator()
Returns the enumerator of the collection.
ValueDescriptorCollection()
The ValueDescriptorCollection constructor.
The ValueDescriptor class contains the description of a single value.
The descriptors namespace contains all descriptor used to describe various items stored within the da...