Interface IProperty<T, P>
Represents instance property.
Inherited Members
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public interface IProperty<T, P> : IProperty, IMember<PropertyInfo>, ICustomAttributeProvider
Type Parameters
| Name | Description |
|---|---|
| T | Property declaring type. |
| P | Type of property value. |
Properties
| Improve this Doc View SourceItem[T]
Gets or sets property value.
Declaration
P this[in T this] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| T | this | The object whose property value will be set or returned. |
Property Value
| Type | Description |
|---|---|
| P | Property value. |