Interface IProperty<T, TValue>
Represents instance property.
Inherited Members
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public interface IProperty<T, TValue> : IProperty, IMember<PropertyInfo>, ICustomAttributeProvider
Type Parameters
| Name | Description |
|---|---|
| T | Property declaring type. |
| TValue | Type of property value. |
Properties
| Improve this Doc View SourceItem[T]
Gets or sets property value.
Declaration
TValue 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 |
|---|---|
| TValue | Property value. |