Class Property<T>
A generic property that handles storing the value of the property.
The name is used in the lookup table.
Assembly: UtilityAIFramework.dll
Syntax
[Serializable]
public class Property<T> : IProperty<T>
Type Parameters
Constructors
Property()
Declaration
Property(T)
Declaration
Parameters
Type |
Name |
Description |
T |
value |
|
Fields
Name
Declaration
Field Value
Value
Declaration
Field Value
Methods
SetName(String)
Declaration
public void SetName(string name)
Parameters
Type |
Name |
Description |
String |
name |
|
SetValue(T)
Declaration
public virtual void SetValue(T value)
Parameters
Type |
Name |
Description |
T |
value |
|
SetValue<T1>(T1)
Declaration
public void SetValue<T1>(T1 value)
Parameters
Type |
Name |
Description |
T1 |
value |
|
Type Parameters
Explicit Interface Implementations
IProperty<T>.Name
Declaration
string IProperty<T>.Name { get; }
Returns
IProperty<T>.Value
Declaration
T IProperty<T>.Value { get; }
Returns
Implements