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