Search Results for

    Show / Hide Table of Contents

    Interface IProperty<T>

    A generic interface for a property to be used in PropertySet<TProperty, TValue> It stores and set a value. That can be found through a table on Property Set.

    Namespace: TinnyStudios.AIUtility.Core.Properties
    Assembly: UtilityAIFramework.dll
    Syntax
    public interface IProperty<T>
    Type Parameters
    Name Description
    T

    Properties

    Name

    Declaration
    string Name { get; }
    Property Value
    Type Description
    String

    Value

    Declaration
    T Value { get; }
    Property Value
    Type Description
    T

    Methods

    SetName(String)

    Declaration
    void SetName(string name)
    Parameters
    Type Name Description
    String name

    SetValue(T)

    Declaration
    void SetValue(T value)
    Parameters
    Type Name Description
    T value
    In This Article
    Back to top Generated by DocFX