Iterate over any child features which are held by this feature.

Namespace:  BioSharp.Core.Bio.Seq
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
public override IEnumerable<IFeature> Features { get; }

Implements

IFeatureHolder..::.Features

Remarks

The order of iteration MAY be significant for some types of Feature.

In BioJava, this returns an enumerator directly. In C#, a very common use of this will be a foreach statement, so it returns an enumerable instead. Those wishing an enumerator can simply call GetEnumerator() and be off to the races.

See Also