Provides YAML scalar parsing helpers aligned with the YAML 1.2 core schema conventions used by YamlSerializer.
public static class YamlScalar
kind:method, kind:property, kind:ctor. Press Esc to clear.IsNull(ReadOnlySpan<Char>)Determines whether a scalar represents YAML null (for example null or ~).TryParseBool(ReadOnlySpan<Char>, out Boolean)Parses a YAML boolean scalar (true/false).TryParseDecimal(ReadOnlySpan<Char>, out Decimal)Parses a YAML floating-point scalar into Decimal.TryParseDouble(ReadOnlySpan<Char>, out Double)Parses a YAML floating-point scalar into Double, including .inf and .nan.TryParseInt32(ReadOnlySpan<Char>, out Int32)Parses a YAML integer scalar into Int32.TryParseInt64(ReadOnlySpan<Char>, out Int64)Parses a YAML integer scalar into Int64, including common base prefixes (0x, 0o, 0b) and underscores.TryParseUInt32(ReadOnlySpan<Char>, out UInt32)Parses a YAML integer scalar into UInt32.TryParseUInt64(ReadOnlySpan<Char>, out UInt64)Parses a YAML integer scalar into UInt64, including common base prefixes (0x, 0o, 0b) and underscores.