Show / Hide Table of Contents

    Class Incrementer

    Inheritance
    Object
    Incrementer
    Incrementer<TValue, TDecision>
    Implements
    IIncrementer
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Platform.Incrementers
    Assembly: Platform.Incrementers.dll
    Syntax
    public class Incrementer : IIncrementer
    Remarks

    Must be class, not struct (in order to persist access to Result field value).

    Constructors

    | Improve this Doc View Source

    Incrementer()

    Initializes a new Incrementer instance.

    Declaration
    public Incrementer()
    | Improve this Doc View Source

    Incrementer(UInt64)

    Initializes a new Incrementer instance.

    Declaration
    public Incrementer(ulong initialValue)
    Parameters
    Type Name Description
    UInt64 initialValue

    A initial value.

    Fields

    | Improve this Doc View Source

    _result

    The result.

    Declaration
    protected ulong _result
    Field Value
    Type Description
    UInt64

    Properties

    | Improve this Doc View Source

    Result

    Gets the result value.

    Declaration
    public ulong Result { get; }
    Property Value
    Type Description
    UInt64

    Methods

    | Improve this Doc View Source

    Increment()

    Increments this instance.

    Declaration
    public void Increment()

    Implements

    IIncrementer
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX