Interface IArrayNamedPropertyIndexer
A helper interface that allows you to quickly get a reference to a nested array type property by its
unique name using a convenient syntax with square brackets Arr["NestedPropName"]
.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public interface IArrayNamedPropertyIndexer
Properties
Item[String]
Returns a reference to a nested array type property by its unique name. You can use the compound name
of the property, separating the individual parts with a point, to obtain a reference to
the property of the second and subsequent nesting levels. For example: Arr["Project.Operations"]
.
The case of characters does not matter.
Declaration
INamedPropertiesCollection this[string PName] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | PName | The name of a nested parameter you want to obtain. It can be compound name separated by points. |
Property Value
Type | Description |
---|---|
INamedPropertiesCollection | Returns a reference to the nested array type property. |