# NTSTATUS

```csharp
[DebuggerDisplay("{Value}")]
public readonly struct NTSTATUS : IEquatable<NTSTATUS>
{
    public readonly int Value;

    public NTSTATUS(int value) => Value = value;

    public static implicit operator int(NTSTATUS value) => value.Value;

    public static explicit operator NTSTATUS(int value) => new(value);

    public static bool operator ==(NTSTATUS left, NTSTATUS right) => left.Value == right.Value;

    public static bool operator !=(NTSTATUS left, NTSTATUS right) => !(left == right);

    public bool Equals(NTSTATUS other) => Value == other.Value;

    public override bool Equals(object obj) => obj is NTSTATUS other && Equals(other);

    public override int GetHashCode() => Value.GetHashCode();

    public override string ToString() => $"0x{Value:x}";

    public static implicit operator uint(NTSTATUS value) => (uint)value.Value;

    public static explicit operator NTSTATUS(uint value) => new((int)value);

    public Severity SeverityCode => (Severity)(((uint)Value & 0xc0000000) >> 30);

    public enum Severity
    {
        Success,
        Informational,
        Warning,
        Error,
    }
    
    public static readonly NTSTATUS STATUS_SUCCESS = (NTSTATUS)0;
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.pinvoke.dev/foundation/ntstatus.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
