Class DoubleArgumentValue
Namespace: Void.Minecraft.Commands.Brigadier.ArgumentTypes
Assembly: Void.Minecraft.dll
Contains a parsed double-precision floating-point argument.
public record DoubleArgumentValue : IArgumentValue, IEquatable<DoubleArgumentValue>Inheritance
Implements
IArgumentValue, IEquatable<DoubleArgumentValue>
Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
DoubleArgumentValue(double)
Contains a parsed double-precision floating-point argument.
public DoubleArgumentValue(double Value)Parameters
Value double
The parsed value.
Properties
Value
The parsed value.
public double Value { get; init; }