Search Results for

    Show / Hide Table of Contents

    Enum ThreadPriority

    Specifies the scheduling priority of a Thread.

    Namespace: System.Threading
    Assembly: mscorlib.dll
    Syntax
    public enum ThreadPriority

    Fields

    Name Description
    AboveNormal

    The Thread can be scheduled after threads with Highest priority and before those with Normal priority.

    BelowNormal

    The Thread can be scheduled after threads with Normal priority and before those with Lowest priority.

    Highest

    The Thread can be scheduled before threads with any other priority.

    Lowest

    The Thread can be scheduled after threads with any other priority.

    Normal

    The Thread can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default.

    In This Article
    Back to top Copyright © 2023 nanoFramework Contributors
    Generated by DocFX