<PackageReference Include="System.Reactive" Version="4.3.1" />

Unit

public struct Unit : IEquatable<Unit>
Represents a type with a single value. This type is often used to denote the successful completion of a void-returning method (C#) or a Sub procedure (Visual Basic).
public static Unit Default { get; }

Gets the single Unit value.

public static bool op_Equality(Unit first, Unit second)

Determines whether the two specified Unit values are equal. Because Unit has a single value, this always returns true.

public static bool op_Inequality(Unit first, Unit second)

Determines whether the two specified Unit values are not equal. Because Unit has a single value, this always returns false.

public bool Equals(Unit other)

Determines whether the specified Unit value is equal to the current Unit. Because Unit has a single value, this always returns true.