In This Article

IVariableDefinitionCollection Interface

Provides the base requirements for a collection of IVariableDefinition objects.

public interface IVariableDefinitionCollection : IObservableCollection<IVariableDefinition>, IList<IVariableDefinition>, ICollection<IVariableDefinition>, IEnumerable<IVariableDefinition>, IEnumerable

Properties

Item[String]

Gets the IVariableDefinition with the specified name.

[C#] In C#, this property is the indexer for the IVariableDefinitionCollection interface.

IVariableDefinition this[string name] { get; }
Parameter Type Description
name String

The name of the IVariableDefinition to return.

Property Value

IVariableDefinition:

The IVariableDefinition with the specified name.

Inherited Members

Extension Methods