AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.5.1" />

 Number

Represents a float value.
public static readonly Number Infinite

Gets the positive infinite value.

public static readonly Number Zero

Gets a zero value.

public bool IsInteger { get; }

Gets if the stored value is an integer number.

public float Value { get; }

Gets the value.

public Number(float value)

Creates a new number value.

public static bool op_Equality(Number a, Number b)

public static float op_Explicit(Number number)

public static int op_Explicit(Number number)

public static bool op_GreaterThan(Number a, Number b)

public static bool op_GreaterThanOrEqual(Number a, Number b)

public static bool op_Inequality(Number a, Number b)

public static bool op_LessThan(Number a, Number b)

public static bool op_LessThanOrEqual(Number a, Number b)

public bool Equals(Number other)

public string ToCss()

Returns a CSS representation of the number.