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